mirror of
https://github.com/ansible/ansible-documentation.git
synced 2026-03-28 13:39:00 +07:00
We should use the official action for retrieving the token to use for the issue/PR triage and dependency update workflows instead of the one we were using before.
70 lines
2.0 KiB
YAML
70 lines
2.0 KiB
YAML
---
|
|
# Copyright (C) 2023 Maxwell G <maxwell@gtmx.me>
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
"on":
|
|
pull_request_target:
|
|
issues:
|
|
types:
|
|
- opened
|
|
workflow_dispatch:
|
|
inputs:
|
|
type:
|
|
required: true
|
|
type: choice
|
|
options:
|
|
- issue
|
|
- pr
|
|
number:
|
|
required: true
|
|
type: number
|
|
|
|
name: "Triage Issues and PRs"
|
|
|
|
jobs:
|
|
label_prs:
|
|
runs-on: ubuntu-latest
|
|
environment: github-bot
|
|
name: "Label Issue/PR"
|
|
steps:
|
|
- name: Print event information
|
|
env:
|
|
event_json: "${{ toJSON(github.event) }}"
|
|
run: |
|
|
echo "${event_json}"
|
|
- name: Generate temp GITHUB_TOKEN
|
|
id: create_token
|
|
uses: actions/create-github-app-token@v2
|
|
with:
|
|
app-id: ${{ secrets.BOT_APP_ID }}
|
|
private-key: ${{ secrets.BOT_APP_KEY }}
|
|
- name: Checkout parent repository
|
|
uses: actions/checkout@v4
|
|
- name: Install Python 3.11
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.11"
|
|
- name: Set up UV
|
|
run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
- name: Setup venv
|
|
run: |
|
|
uv venv venv
|
|
uv pip install --python venv \
|
|
-e hacking/pr_labeler -c tests/pr_labeler.txt
|
|
- name: "Run the issue labeler"
|
|
if: "github.event.issue || inputs.type == 'issue'"
|
|
env:
|
|
event_json: "${{ toJSON(github.event) }}"
|
|
GITHUB_TOKEN: ${{ steps.create_token.outputs.token }}
|
|
number: "${{ github.event.issue.number || inputs.number }}"
|
|
run: |
|
|
./venv/bin/ad-triage issue "${number}"
|
|
- name: "Run the PR labeler"
|
|
if: "github.event.pull_request || inputs.type == 'pr'"
|
|
env:
|
|
event_json: "${{ toJSON(github.event) }}"
|
|
GITHUB_TOKEN: ${{ steps.create_token.outputs.token }}
|
|
number: "${{ github.event.number || inputs.number }}"
|
|
run: |
|
|
./venv/bin/ad-triage pr "${number}"
|