diff --git a/.github/workflows/__call-update-flathub-repo.yml b/.github/workflows/__call-update-flathub-repo.yml index 0998f632..3de311c5 100644 --- a/.github/workflows/__call-update-flathub-repo.yml +++ b/.github/workflows/__call-update-flathub-repo.yml @@ -159,18 +159,3 @@ jobs: delete-branch: true title: "chore: Update ${{ env.FLATHUB_PKG }} to ${{ github.event.release.tag_name }}" body: ${{ github.event.release.body }} - - - name: Automerge PR - env: - GH_TOKEN: ${{ secrets.GH_TOKEN }} - if: >- - steps.check-label.outputs.hasTopic == 'true' && - steps.check-release.outputs.isLatestRelease == 'true' && - fromJson(steps.download.outputs.downloaded_files)[0] - run: | - gh pr merge \ - --auto \ - --delete-branch \ - --repo "flathub/${{ env.FLATHUB_PKG }}" \ - --squash \ - "${{ steps.create-pr.outputs.pull-request-number }}" diff --git a/.github/workflows/__call-update-homebrew-repo.yml b/.github/workflows/__call-update-homebrew-repo.yml index c37d9687..2b66e59f 100644 --- a/.github/workflows/__call-update-homebrew-repo.yml +++ b/.github/workflows/__call-update-homebrew-repo.yml @@ -16,10 +16,6 @@ on: description: 'Username for git commits' required: true -concurrency: - group: "${{ github.workflow }}-${{ github.event.release.tag_name }}" - cancel-in-progress: true - jobs: update-homebrew-repo: runs-on: ubuntu-latest diff --git a/.github/workflows/__call-update-pacman-repo.yml b/.github/workflows/__call-update-pacman-repo.yml index b4ca61b0..6a172e27 100644 --- a/.github/workflows/__call-update-pacman-repo.yml +++ b/.github/workflows/__call-update-pacman-repo.yml @@ -84,7 +84,7 @@ jobs: steps.check-label.outputs.hasTopic == 'true' && steps.check-release.outputs.isLatestRelease == 'true' && fromJson(steps.download.outputs.downloaded_files)[0] - run: rm -f "pkgbuilds/${{ steps.prep.outputs.pkg_name }}" + run: rm -f "${{ fromJson(steps.download.outputs.downloaded_files)[0] }}" - name: Create/Update Pull Request id: create-pr