Skip to content

Tag builds not firing on automated tags #5

Tag builds not firing on automated tags

Tag builds not firing on automated tags #5

name: New Issue Workflow
on:
issues:
types:
- opened
jobs:
update-new-issues:
runs-on: ubuntu-latest
steps:
- name: Initialise Labelling
run: gh issue edit $ISSUE --add-label "to do"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ISSUE: ${{ github.event.issue.html_url }}