We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61a621c commit 41d8b0aCopy full SHA for 41d8b0a
.github/bot.yml
.github/workflows/bot.yml
.github/workflows/manager.yml
@@ -0,0 +1,26 @@
1
+name: Repository Manager
2
+on:
3
+ workflow_dispatch:
4
+ create:
5
+ issues:
6
+ types: [opened, reopened, closed]
7
+ pull_request:
8
+ branches: [main]
9
10
+ issue_comment:
11
+ types: [created]
12
+ release:
13
+ types: [published]
14
+
15
+jobs:
16
+ manager:
17
+ name: Repository Manager
18
+ uses: Katsute/Workflows/.github/workflows/manager.yml@main
19
+ if: >-
20
+ ${{
21
+ (github.repository_owner == 'Katsute' || github.repository_owner == 'KatsuteDev') &&
22
+ github.actor != 'mashiro-san' &&
23
+ !endsWith(github.actor, '[bot]')
24
+ }}
25
+ secrets:
26
+ token: ${{ secrets.BOT }}
0 commit comments