Skip to content

Add Quick Change workflow #1

Add Quick Change workflow

Add Quick Change workflow #1

Workflow file for this run

---
name: Quick Change
permissions:
id-token: write
contents: write
pull-requests: write
on:
pull_request:
types:
- opened
- reopened
issue_comment:
types: [created, edited]
pull_request_review_comment:
types: [created, edited]
jobs:
call-reusable-quick-change:
name: Run
if: |
github.event_name == 'pull_request' ||
(
(
(github.event_name == 'issue_comment' && github.event.issue.pull_request) ||
github.event_name == 'pull_request_review_comment'
) &&
contains(github.event.comment.body, '@ws-quick-change') &&
(
github.event.comment.author_association == 'OWNER' ||
github.event.comment.author_association == 'MEMBER' ||
github.event.comment.author_association == 'COLLABORATOR' ||
github.event.comment.author_association == 'CONTRIBUTOR'
)
)
uses: wealthsimple/quick-change/.github/workflows/quick_change.yml@main

Check failure on line 38 in .github/workflows/quick_change.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/quick_change.yml

Invalid workflow file

error parsing called workflow ".github/workflows/quick_change.yml" -> "wealthsimple/quick-change/.github/workflows/quick_change.yml@main" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
secrets: inherit