mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-07-02 23:23:21 +00:00
21 lines
410 B
YAML
21 lines
410 B
YAML
name: Issue Open Check
|
|
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
|
|
permissions:
|
|
issues: write
|
|
|
|
jobs:
|
|
issue-open-add-labels:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ !github.event.issue.pull_request }}
|
|
steps:
|
|
- name: Add labels
|
|
run: |
|
|
gh issue edit "${{ github.event.issue.number }}" \
|
|
--add-label "🔔 Pending processing"
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|