Skip to content

Commit

Permalink
fix: trilom/file-changes-action bug
Browse files Browse the repository at this point in the history
This action fails on first commit for push events.

Apply some of proposals seen in their issue thread: trilom/file-changes-action#116
  • Loading branch information
davorpa authored Jan 15, 2022
1 parent 5572dbf commit 95f547b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
name: Check URLs from changed files
on: [push, pull_request]
on:
push:
branches:
# Push events our default branch
- main
# Push events to branches matching refs/heads/fpb/...
- 'fpb/**'
# Push events to branches matching refs/heads/[username]/...
- ${{ github.actor }}/**
pull_request:
jobs:
job:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 95f547b

Please sign in to comment.