-
Breaking change for
on: push
workflows: Removed logic that was ignoringpush
events on tags and remotes. This was limiting some use cases and should be a decision that is made in the workflow itself, not by the action.To retain the same behaviour for workflows using
on: push
you may want to ignore push events for tags and
remotes using anif
condition.name: Create Pull Request on: push jobs: createPullRequest: if: startsWith(github.ref, 'refs/heads/') runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 ...