Skip to content

Bug tracker

Bug tracker #10

Workflow file for this run

name: Bug tracker
on:
workflow_dispatch:
issues:
types: labeled
jobs:
get-org-repos:
runs-on: ubuntu-latest
steps:
- uses: austenstone/get-org-repos@main
with:
github-token: ${{ secrets.PROJECT_PAT }}
id: get-org-repos
outputs:
repos: ${{ steps.get-org-repos.outputs.repos }}
add_bug_to_project:
needs:
- get-org-repos
runs-on: ubuntu-latest
if: github.event.action == 'labeled' && github.event.label.name == 'bug'
steps:
- name: Add issue to project
uses: actions/add-to-project@v1
with:
project-url: https://github.com/orgs/fairpm/projects/5
github-token: ${{ secrets.PROJECT_PAT }}
labeled: bug