-
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: Create workflows to run when PRs are opened #86
base: saga
Are you sure you want to change the base?
Conversation
e43bf02
to
84d9e40
Compare
issues: ${{ steps.extract.outputs.issues }} | ||
steps: | ||
- id: extract | ||
uses: MatrixFrog/pr-extract-issues@2684b0f1d7b1671b7fb9ab8bfbb9b2b88983e6c5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is https://github.com/marketplace/actions/pr-extract-issues except I forked it to fix a few small issues. My fork is here: https://github.com/MatrixFrog/pr-extract-issues
steps: | ||
- env: | ||
ISSUES: ${{ needs.extract-issue-numbers.outputs.issues }} | ||
run: "echo $ISSUES" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here, we want to invoke the github API (or use another marketplace Action that invokes the github API) to grab the relevant issues and move them to the In Review column on the Project
As described in https://github.com/orgs/distributeaid/projects/15?pane=issue&itemId=73074835
To test this, you can edit the body of this PR to mention a specific issue number. That edit should trigger the workflow to run, and the issue number should be extracted.
Fixes #10 (doesn't really, just for testing!)