mirror of
https://github.com/konpa/devicon.git
synced 2025-08-31 02:00:39 +02:00
48 lines
1.4 KiB
YAML
48 lines
1.4 KiB
YAML
name: Label Issue In Develop
|
|
on:
|
|
workflow_run:
|
|
workflows: ['On Develop PR Merge']
|
|
types:
|
|
- completed
|
|
jobs:
|
|
on-failure:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
|
|
steps:
|
|
- run: echo "First workflow was a failure"
|
|
label_preflight:
|
|
name: Label Issue In Develop
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Setup Python v3.8
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: 3.8
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r ./.github/scripts/requirements.txt
|
|
|
|
- name: Download workflow artifact
|
|
uses: dawidd6/action-download-artifact@v7
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
workflow: peek_icons.yml
|
|
run_id: ${{ github.event.workflow_run.id }}
|
|
|
|
- name: Read the pr_num file
|
|
id: pr_num_reader
|
|
uses: juliangruber/read-file-action@v1.0.0
|
|
with:
|
|
path: ./pr_num/pr_num.txt
|
|
|
|
- name: Run in_develop_labeler.py
|
|
env:
|
|
TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
PR_NUM: ${{ steps.pr_num_reader.outputs.content }}
|
|
run: python ./.github/scripts/in_develop_labeler.py $TOKEN "$PR_NUM"
|