As a korifi operator I want to be able to use my own log cache endpoint #2
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: Assign closed issues to the `release-candidate` milestone | |
on: | |
issues: | |
types: [closed] | |
jobs: | |
update-milestone: | |
runs-on: ubuntu-latest | |
name: Assign to release-candidate milestone | |
steps: | |
- name: Set Milestone for Issue | |
uses: hustcer/milestone-action@v2 | |
if: github.event.issue.state == 'closed' | |
with: | |
action: bind-issue | |
milestone: release-candidate | |
env: | |
GITHUB_TOKEN: ${{ secrets.ADD_TO_PROJECT_PAT }} |