Skip to content

Commit

Permalink
feat(create instance): Add "instance:approved" label when provisioning
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfr committed Jul 31, 2024
1 parent cfaefdb commit 3ebd1a8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/create-instance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,17 @@ jobs:

- uses: actions/checkout@v4

- name: Add "instance:approved" label
uses: actions/github-script@v7
with:
script: |
github.rest.issues.addLabels({
issue_number: context.payload.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["instance:approved"]
})
- name: comment (progress)
id: couc_progress
uses: ./.github/actions/comment-progress
Expand Down

0 comments on commit 3ebd1a8

Please sign in to comment.