-
Notifications
You must be signed in to change notification settings - Fork 0
feat: assign issue or PR to project on setting milestone #172
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
Open
mfranzke
wants to merge
16
commits into
main
Choose a base branch
from
feat-assign-issue-or-pr-to-project-on-setting-milestone
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+59
−0
Open
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
3ceaa75
feat: assign issue or PR to project on setting milestone
mfranzke 870ed78
Update pull-request.yml
mfranzke c06e384
Update 99-assign-to-project-on-milestone-set.yml
mfranzke bd5de9f
Update 99-assign-to-project-on-milestone-set.yml
mfranzke 1b7163f
Update 99-assign-to-project-on-milestone-set.yml
mfranzke 5053a5c
Update 99-assign-to-project-on-milestone-set.yml
mfranzke 53992b3
Update 99-assign-to-project-on-milestone-set.yml
mfranzke 87d1259
Update 99-assign-to-project-on-milestone-set.yml
mfranzke 4a76fcd
Update 99-assign-to-project-on-milestone-set.yml
mfranzke 20bfaf5
Update 99-assign-to-project-on-milestone-set.yml
mfranzke 4acbe07
Update 99-assign-to-project-on-milestone-set.yml
mfranzke c11f611
Update pull-request.yml
mfranzke 1b6034a
Update pull-request.yml
mfranzke 02a90bc
Update 99-assign-to-project-on-milestone-set.yml
mfranzke fd840b5
Update pull-request.yml
mfranzke baa1149
Update 99-assign-to-project-on-milestone-set.yml
mfranzke File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
.github/workflows/99-assign-to-project-on-milestone-set.yml
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Assign to Project on Milestone Set | ||
|
||
on: | ||
issues: | ||
types: [milestoned] | ||
pull_request: | ||
types: [milestoned] | ||
|
||
jobs: | ||
assign_to_project: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Assign issue or PR to project if milestone set | ||
run: | | ||
# Set variables | ||
ISSUE_OR_PR=${{ github.event.issue || github.event.pull_request }} | ||
|
||
# Directly set the project ID here | ||
PROJECT_ID="18" | ||
|
||
# Get the repository details | ||
REPO_NAME=${{ github.repository }} | ||
|
||
# If project ID exists, assign the issue or PR to the project | ||
if [ -n "$PROJECT_ID" ]; then | ||
curl -s -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | ||
-d "{\"project_url\": \"https://api.github.com/repos/$REPO_NAME/projects/$PROJECT_ID\", \"content_id\": \"$ISSUE_OR_PR\", \"content_type\": \"issue\"}" \ | ||
"https://api.github.com/repos/$REPO_NAME/projects/$PROJECT_ID/columns/cards" | ||
else | ||
echo "Project ID not found!" | ||
fi |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.