From 304d75a6b12eac18ccccc22cb1aafad8f035ce14 Mon Sep 17 00:00:00 2001 From: Michael Goodness Date: Thu, 22 Feb 2024 12:53:25 -0600 Subject: [PATCH] chore(ci): use forked actions --- .github/workflows/check-release.yml | 6 ++++-- .github/workflows/release.yml | 7 ++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check-release.yml b/.github/workflows/check-release.yml index c8a1774..c48165a 100644 --- a/.github/workflows/check-release.yml +++ b/.github/workflows/check-release.yml @@ -10,8 +10,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + with: + show-progress: false - - uses: actions-ecosystem/action-release-label@v1 + - uses: mgoodness/action-release-label@main id: release-label if: ${{ startsWith(github.event.label.name, 'release/') }} @@ -33,6 +35,6 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} body: | - This PR will update [${{ github.repository }}](https://github.com/${{ github.repository }}) from [${{ steps.get-latest-tag.outputs.tag }}](https://github.com/${{ github.repository }}/releases/tag/${{ steps.get-latest-tag.outputs.tag }}) to ${{ steps.bump-semver.outputs.new_version }} :rocket: + This PR will update [${{ github.repository }}](${{ github.server_url }}/${{ github.repository }}) from [${{ steps.get-latest-tag.outputs.tag }}](${{ github.server_url }}/${{ github.repository }}/releases/tag/${{ steps.get-latest-tag.outputs.tag }}) to ${{ steps.bump-semver.outputs.new_version }} :rocket: If this update isn't as you expected, you may want to change or remove the *release label*. diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6d2b786..a34993c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,17 +10,18 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + with: + show-progress: false - - uses: actions-ecosystem/action-get-merged-pull-request@v1 + - uses: mgoodness/action-get-merged-pull-request@main id: get-merged-pull-request with: github_token: ${{ secrets.GITHUB_TOKEN }} - - uses: actions-ecosystem/action-release-label@v1 + - uses: mgoodness/action-release-label@main id: release-label if: ${{ steps.get-merged-pull-request.outputs.title != null }} with: - github_token: ${{ secrets.GITHUB_TOKEN }} labels: ${{ steps.get-merged-pull-request.outputs.labels }} - uses: actions-ecosystem/action-get-latest-tag@v1