Will remove a label as an Github action.
In order to release do the following:
- Do your changes
- Create a branch
release/3
and checkit out:git checkout -b release/3
- Do
npm install && npm run build && npm prune --production
- Add
node_modules
andlib
to git:git add node_modules lib -f
(use-f
to force add since its ignored by.gitignore
) - Push your changes to the release branch:
git push origin release/3
- To verify that everything works set your branch as
uses
in an actions workflow, e.g.uses: signavio/unlabel-action@release/3
- When verified that everything is working tag that version using
git tag v3
and push the tag:git push --tags
- In your action configuration in the GitHub actions workflow use the new released version
uses: signavio/unlabel-action@v3
- Celebrate great success
Required label_name
is the name of the label which will be removed from the issue.
Required repo_token
the github secret token, github provides that thing on its own.
uses: signavio/unlabel-action@v3
with:
label_name: 'In progress'
repo_token: ${{ secrets.GITHUB_TOKEN }}