Skip to content

Rebase Trigger

Rebase Trigger #6

name: Rebase Trigger
on:
issue_comment:
types: [created]
jobs:
launchRebaseBuild:
runs-on: ubuntu-latest
# GITHUB_TOKEN change from read-write to read-only on 2024-02-01 requires permissions block
# https://docs.opensource.microsoft.com/github/apps/permission-changes/
# https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
permissions:
actions: write
contents: read
security-events: write
id-token: write # The rebase-action template being invoked requires this permission
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '@gitbot rebase')
uses: xamarin/rebase-bot-action/.github/workflows/[email protected]

Check failure on line 19 in .github/workflows/rebase-trigger.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/rebase-trigger.yml

Invalid workflow file

error parsing called workflow ".github/workflows/rebase-trigger.yml" -> "xamarin/rebase-bot-action/.github/workflows/[email protected]" (source tag with sha:c1c640e11082aa6238b0735684ea66d85d3fc09d) : You have an error in your yaml syntax on line 66
with:
pull_request_url: ${{ github.event.issue.pull_request.url }}
comment_author: ${{ github.actor }}
github_repository: ${{ github.repository }}
secrets:
azure_tenant_id: ${{ secrets.REBASE_AZURE_TENANT_ID }}
azure_subscription_id: ${{ secrets.REBASE_AZURE_SUBSCRIPTION_ID }}
azure_client_id: ${{ secrets.REBASE_AZURE_CLIENT_ID }}
ado_organization: ${{ secrets.ADO_PROJECTCOLLECTION }}
ado_project: ${{ secrets.ADO_PROJECT }}
rebase_pipeline_id: ${{ secrets.REBASE_PIPELINEID }}
github_account_pat: ${{ secrets.SERVICEACCOUNT_PAT }}