Skip to content

Commit

Permalink
chore: use correct actor name for release-please (#5897)
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer authored Feb 24, 2023
1 parent 92c856c commit b975db4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/conventional-commit-lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
always_check_pr_title: true

6 changes: 3 additions & 3 deletions .github/workflows/backwards-compatibility-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ jobs:
- name: "Install dependencies"
run: composer global require "roave/backward-compatibility-check:^8.2"
- name: "Check for BC breaks"
if: github.actor != 'app/release-please'
if: github.actor != 'release-please[bot]'
run: |
~/.composer/vendor/bin/roave-backward-compatibility-check --from=origin/main --format=github-actions
- name: Get Latest Release
if: github.actor == 'app/release-please'
if: github.actor == 'release-please[bot]'
id: latest-release
uses: pozetroninc/github-action-get-latest-release@master
with:
repository: ${{ github.repository }}
- name: "Check for BC breaks (Next Release)"
if: github.actor == 'app/release-please'
if: github.actor == 'release-please[bot]'
run: |
~/.composer/vendor/bin/roave-backward-compatibility-check \
--from=${{ steps.latest-release.outputs.release }} \
Expand Down

0 comments on commit b975db4

Please sign in to comment.