Add instructions on how to use the VM when building an SDK #224
This file contains 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
name: Update CompletedSprint on Issue Closed | |
on: | |
issues: | |
types: [closed] | |
jobs: | |
update-completed-sprint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate token | |
id: generate_token | |
uses: tibdex/github-app-token@v2 | |
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 }} |