You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 11, 2024. It is now read-only.
In github actions there is the possibility to run a action if the run fails
Github action <- creates issue with labels and assignee
- uses: nashmaniac/create-issue-action@v1.1if: ${{ failure() }} # only run when this job is failed.name: Create Issue Actionwith:
title: Linter Failedtoken: ${{secrets.GITHUB_TOKEN}}assignees: ${{github.actor}}labels: refactoring-needed, help neededbody: Workflow failed for commit ${{github.sha}}