Parent repository for [rajbos/kvm] has updates available #83
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update the fork | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
update-fork: | |
runs-on: ubuntu-latest | |
if: github.event.label.name == 'update-fork' | |
permissions: | |
contents: write | |
actions: write | |
steps: | |
- uses: peter-murray/workflow-application-token-action@d17e3a9a36850ea89f35db16c1067dd2b68ee343 # v2.1.0 | |
if: ${{ vars.use_github_app == 'true' }} | |
id: get-workflow-token | |
with: | |
application_id: ${{ secrets.GH_AUTOMATION_ID }} | |
application_private_key: ${{ secrets.GH_AUTOMATION_PRIVATE_KEY }} | |
- id: get-token | |
name: Determine token to use | |
env: | |
github_app_token: ${{ steps.get-workflow-token.outputs.token }} | |
PAT_GITHUB: ${{ secrets.PAT_GITHUB }} | |
run: | | |
if [ -n "$github_app_token" ]; then | |
echo "token=$github_app_token" >> $GITHUB_OUTPUT | |
echo "Using token from GitHub App" | |
else | |
echo "token=$PAT_GITHUB" >> $GITHUB_OUTPUT | |
echo "Using personal access token from secret 'PAT_GITHUB'" | |
fi | |
- uses: actions/checkout@v4 | |
- run: | | |
echo "Found the issue that triggered this event with number [${{ github.event.issue.number }}]" | |
echo "Found the issue title [${{ github.event.issue.title }}]" | |
- run: | | |
.\update-fork.ps1 -orgName ${{ github.repository_owner }} -userName "xxx" -PAT ${{ steps.get-token.outputs.token }} -issueTitle "${{ github.event.issue.title }}" -issueId ${{ github.event.issue.number }} -issuesRepository ${{ github.repository }} | |
shell: pwsh |