Chinese Translation of "Spring Boot 3.0 support and new security capabilities in Open Liberty 23.0.0.9" #43
This file contains 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/[email protected] | |
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' | |