Skip to content

feat(app-panel): improve parameter UI #3

feat(app-panel): improve parameter UI

feat(app-panel): improve parameter UI #3

name: TechDev-project
on:
issues:
types:
- opened
pull_request:
types:
- opened
permissions:
issues: write
pull-requests: write
contents: read
jobs:
CCBR-projects:
runs-on: ubuntu-latest
steps:
- name: Generate a token
id: generate-token
uses: actions/create-github-app-token@v2
with:
app-id: ${{ vars.CCBR_BOT_APP_ID }}
private-key: ${{ secrets.CCBR_BOT_PRIVATE_KEY }}
owner: CCBR
- name: add to CCBR techdev project
uses: actions/add-to-project@v1.0.2
with:
project-url: https://github.com/orgs/CCBR/projects/17
github-token: ${{ steps.generate-token.outputs.token }}
- name: add to CCBR MOSuite project
uses: actions/add-to-project@v1.0.2
if: github.event_name == 'issues'
with:
project-url: https://github.com/orgs/CCBR/projects/32
github-token: ${{ steps.generate-token.outputs.token }}
NIDAP-projects:
runs-on: ubuntu-latest
if: github.event_name == 'issues'
steps:
- name: Generate a token
id: generate-token
uses: actions/create-github-app-token@v2
with:
app-id: ${{ vars.CCBR_BOT_APP_ID }}
private-key: ${{ secrets.CCBR_BOT_PRIVATE_KEY }}
owner: NIDAP-Community
- name: add to NIDAP MOSuite project
uses: actions/add-to-project@v1.0.2
with:
project-url: https://github.com/orgs/NIDAP-Community/projects/3
github-token: ${{ steps.generate-token.outputs.token }}