From b975db4ca44f8ca33e1049ba93e9c9f968f30c28 Mon Sep 17 00:00:00 2001 From: Brent Shaffer Date: Fri, 24 Feb 2023 18:31:24 -0500 Subject: [PATCH] chore: use correct actor name for release-please (#5897) --- .github/conventional-commit-lint.yaml | 2 ++ .github/workflows/backwards-compatibility-check.yaml | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 .github/conventional-commit-lint.yaml diff --git a/.github/conventional-commit-lint.yaml b/.github/conventional-commit-lint.yaml new file mode 100644 index 000000000000..0c96b611f7b1 --- /dev/null +++ b/.github/conventional-commit-lint.yaml @@ -0,0 +1,2 @@ +always_check_pr_title: true + diff --git a/.github/workflows/backwards-compatibility-check.yaml b/.github/workflows/backwards-compatibility-check.yaml index 1b652cc1b49c..381a21588b6f 100644 --- a/.github/workflows/backwards-compatibility-check.yaml +++ b/.github/workflows/backwards-compatibility-check.yaml @@ -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 }} \