Skip to content

Versionless Features stand alone blog #74

Versionless Features stand alone blog

Versionless Features stand alone blog #74

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'