Skip to content

Commit

Permalink
Update the CompletedSprint field when an issue/pr is closed (#102)
Browse files Browse the repository at this point in the history
* Testing the update completed sprint action

* Update completed sprint on issue/pr closed
  • Loading branch information
paulbellamy committed Apr 27, 2023
1 parent e885f0e commit 5249bf5
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/update-completed-sprint-on-issue-closed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Update CompletedSprint on Issue Closed

on:
issues:
types: [closed]
pull_request:
types: [closed]

jobs:
update-completed-sprint:
runs-on: ubuntu-latest
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.GH_PROJECT_MANAGEMENT_APP_ID }}
private_key: ${{ secrets.GH_PROJECT_MANAGEMENT_APP_PEM }}
- name: Update CompletedSprint on Issue Closed
id: update_completedsprint_on_issue_closed
uses: stellar/actions/update-completed-sprint-on-issue-closed@main
with:
project_name: "Platform Scrum"
field_name: "CompletedSprint"
project_token: ${{ steps.generate_token.outputs.token }}

0 comments on commit 5249bf5

Please sign in to comment.