Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/__call-release-notifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ permissions:
on:
workflow_call:
secrets:
GH_EMAIL:
description: 'GitHub email to use for the workflow.'
required: true
GH_NAME:
description: 'GitHub name to use for the workflow.'
required: true
GH_TOKEN:
description: 'GitHub token to use for the workflow.'
required: true
Expand Down Expand Up @@ -109,6 +115,8 @@ jobs:
steps.check-release.outputs.isLatestRelease == 'true'
uses: peter-evans/create-pull-request@v7
with:
author: "${{ secrets.GH_NAME }} <${{ secrets.GH_EMAIL }}>"
committer: "${{ secrets.GH_NAME }} <${{ secrets.GH_EMAIL }}>"
token: ${{ secrets.GH_TOKEN }}
commit-message: |
chore: Add blog post for ${{ github.event.repository.name }} release ${{ github.event.release.tag_name }}
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/__call-update-flathub-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ permissions:
on:
workflow_call:
secrets:
GH_EMAIL:
description: 'GitHub email to use for the workflow.'
required: true
GH_NAME:
description: 'GitHub name to use for the workflow.'
required: true
GH_TOKEN:
description: 'GitHub token to use for the workflow.'
required: true
Expand Down Expand Up @@ -152,6 +158,8 @@ jobs:
fromJson(steps.download.outputs.downloaded_files)[0]
uses: peter-evans/create-pull-request@v7
with:
author: "${{ secrets.GH_NAME }} <${{ secrets.GH_EMAIL }}>"
committer: "${{ secrets.GH_NAME }} <${{ secrets.GH_EMAIL }}>"
path: "flathub/${{ env.FLATHUB_PKG }}"
token: ${{ secrets.GH_TOKEN }}
commit-message: "chore: Update ${{ env.FLATHUB_PKG }} to ${{ github.event.release.tag_name }}"
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/__call-update-pacman-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ permissions:
on:
workflow_call:
secrets:
GH_EMAIL:
description: 'GitHub email to use for the workflow.'
required: true
GH_NAME:
description: 'GitHub name to use for the workflow.'
required: true
GH_TOKEN:
description: 'GitHub token to use for the workflow.'
required: true
Expand Down Expand Up @@ -95,6 +101,8 @@ jobs:
fromJson(steps.download.outputs.downloaded_files)[0]
uses: peter-evans/create-pull-request@v7
with:
author: "${{ secrets.GH_NAME }} <${{ secrets.GH_EMAIL }}>"
committer: "${{ secrets.GH_NAME }} <${{ secrets.GH_EMAIL }}>"
add-paths: |
pkgbuilds/*
token: ${{ secrets.GH_TOKEN }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/_release-notifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ jobs:
uses: LizardByte/.github/.github/workflows/__call-release-notifier.yml@master
if: github.repository_owner == 'LizardByte'
secrets:
GH_EMAIL: ${{ secrets.GH_BOT_EMAIL }}
GH_NAME: ${{ secrets.GH_BOT_NAME }}
GH_TOKEN: ${{ secrets.GH_BOT_TOKEN }}
2 changes: 2 additions & 0 deletions .github/workflows/_update-flathub-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,6 @@ jobs:
uses: LizardByte/.github/.github/workflows/__call-update-flathub-repo.yml@master
if: github.repository_owner == 'LizardByte'
secrets:
GH_EMAIL: ${{ secrets.GH_BOT_EMAIL }}
GH_NAME: ${{ secrets.GH_BOT_NAME }}
GH_TOKEN: ${{ secrets.GH_BOT_TOKEN }}
2 changes: 2 additions & 0 deletions .github/workflows/_update-pacman-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,6 @@ jobs:
uses: LizardByte/.github/.github/workflows/__call-update-pacman-repo.yml@master
if: github.repository_owner == 'LizardByte'
secrets:
GH_EMAIL: ${{ secrets.GH_BOT_EMAIL }}
GH_NAME: ${{ secrets.GH_BOT_NAME }}
GH_TOKEN: ${{ secrets.GH_BOT_TOKEN }}