mirror of
https://github.com/ROCm/ROCm.git
synced 2026-01-06 21:33:57 -05:00
23 lines
582 B
YAML
23 lines
582 B
YAML
name: Issue retrieval
|
|
|
|
on:
|
|
issues:
|
|
types: [opened, edited]
|
|
|
|
jobs:
|
|
auto-retrieve:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Generate a token
|
|
id: generate_token
|
|
uses: actions/create-github-app-token@v1
|
|
with:
|
|
app_id: ${{ secrets.ACTION_APP_ID }}
|
|
private_key: ${{ secrets.ACTION_PEM }}
|
|
- name: 'Retrieve Issue'
|
|
uses: harkgill-amd/rocm_issue_management@main
|
|
with:
|
|
authentication-token: ${{ steps.generate_token.outputs.token }}
|
|
github-organization: 'ROCm'
|
|
project-num: '6'
|