Barazo default frontend barazo.forum
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: auto-add new issues to project board

+14
+14
.github/workflows/auto-add-to-project.yml
··· 1 + name: Auto-add to project board 2 + 3 + on: 4 + issues: 5 + types: [opened, transferred] 6 + 7 + jobs: 8 + add-to-project: 9 + runs-on: ubuntu-latest 10 + steps: 11 + - uses: actions/add-to-project@v1.0.2 12 + with: 13 + project-url: https://github.com/orgs/singi-labs/projects/2 14 + github-token: ${{ secrets.PROJECT_TOKEN }}