├── README.md └── .github └── workflows └── assign-issues-to-projects.yml /README.md: -------------------------------------------------------------------------------- 1 | This repo is unused. Altinn PDF is now handled in https://github.com/Altinn/altinn-studio/issues/16252 2 | -------------------------------------------------------------------------------- /.github/workflows/assign-issues-to-projects.yml: -------------------------------------------------------------------------------- 1 | name: Auto Assign to Project 2 | 3 | on: 4 | issues: 5 | types: 6 | - opened 7 | 8 | jobs: 9 | add-to-project: 10 | name: Add issue to Team Platform project 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/add-to-project@main 14 | with: 15 | project-url: https://github.com/orgs/Altinn/projects/20 16 | github-token: ${{ secrets.ASSIGN_PROJECT_TOKEN }} 17 | --------------------------------------------------------------------------------