Add blog post for survey regarding Jakarta EE technologies in use #100
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Auto Assign Issues to Project | |
| on: | |
| issues: | |
| types: [opened, labeled] | |
| env: | |
| MY_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| jobs: | |
| assign_one_project: | |
| runs-on: ubuntu-latest | |
| name: Assign to Blog Planning Project | |
| steps: | |
| - name: Assign new issues to the blog planning project board | |
| uses: srggrs/assign-one-project-github-action@1.2.1 | |
| if: | | |
| github.event_name == 'issues' && | |
| ( | |
| github.event.action == 'opened' || | |
| contains(github.event.issue.labels.*.name, 'open') | |
| ) | |
| with: | |
| project: 'https://github.com/orgs/OpenLiberty/projects/15' | |
| column_name: 'No Status' | |