Skip to content

Commit

Permalink
Some fixed for GHAs
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed Nov 9, 2023
1 parent 9bd7113 commit 341e6fb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci-close-milestone.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Close Milestone and Notify Slack
name: Close Milestone

on:
release
release:
types:
- published

jobs:
close-milestone:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/close-milestone-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@ on:
type: string

jobs:
build:
close-milestone:

runs-on: ubuntu-latest

steps:

- id: get-milestone-from-tag
run: echo milestoneName=${${{ inputs.releaseTag }}#v} >> $GITHUB_OUTPUT
run: |
TAG=${{ inputs.releaseTag }}
echo milestoneName=${TAG#v} >> $GITHUB_OUTPUT
- uses: octokit/[email protected]
id: list_milestones
Expand Down

0 comments on commit 341e6fb

Please sign in to comment.