Skip to content

Commit de7c604

Browse files
committed
Trigger Claude workflows in the fork
1 parent c6c378a commit de7c604

3 files changed

Lines changed: 78 additions & 0 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: "Claude Update Config Parameters Docs On Change"
2+
3+
on:
4+
push:
5+
branches:
6+
- "2.2.x"
7+
paths:
8+
- '.github/workflows/claude-update-config-parameters-docs.yml'
9+
- 'conf/parametersSchema.neon'
10+
11+
jobs:
12+
fix:
13+
runs-on: ubuntu-latest
14+
permissions:
15+
contents: read
16+
actions: write
17+
steps:
18+
- name: Harden the runner (Audit all outbound calls)
19+
uses: step-security/harden-runner@5ef0c079ce82195b2a36a210272d6b661572d83e # v2.14.2
20+
with:
21+
egress-policy: audit
22+
23+
- name: Trigger Claude Update Config Parameters Docs
24+
env:
25+
GH_TOKEN: ${{ secrets.PHPSTAN_BOT_TOKEN }}
26+
run: gh workflow run claude-update-config-parameters-docs.yml --repo phpstan-bot/phpstan-src
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: "Claude Update PHPDoc Tags Docs On Change"
2+
3+
on:
4+
push:
5+
branches:
6+
- "2.2.x"
7+
paths:
8+
- '.github/workflows/claude-update-phpdoc-tags-docs-on-change.yml'
9+
- 'src/PhpDoc/PhpDocNodeResolver.php'
10+
11+
jobs:
12+
fix:
13+
runs-on: ubuntu-latest
14+
permissions:
15+
contents: read
16+
actions: write
17+
steps:
18+
- name: Harden the runner (Audit all outbound calls)
19+
uses: step-security/harden-runner@5ef0c079ce82195b2a36a210272d6b661572d83e # v2.14.2
20+
with:
21+
egress-policy: audit
22+
23+
- name: Trigger Claude Update PHPDoc Tags Docs
24+
env:
25+
GH_TOKEN: ${{ secrets.PHPSTAN_BOT_TOKEN }}
26+
run: gh workflow run claude-update-phpdoc-tags-docs.yml --repo phpstan-bot/phpstan-src
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: "Claude Update PHPDoc Types Docs On Change"
2+
3+
on:
4+
push:
5+
branches:
6+
- "2.2.x"
7+
paths:
8+
- '.github/workflows/claude-update-phpdoc-types-docs-on-change.yml'
9+
- 'src/PhpDoc/TypeNodeResolver.php'
10+
11+
jobs:
12+
fix:
13+
runs-on: ubuntu-latest
14+
permissions:
15+
contents: read
16+
actions: write
17+
steps:
18+
- name: Harden the runner (Audit all outbound calls)
19+
uses: step-security/harden-runner@5ef0c079ce82195b2a36a210272d6b661572d83e # v2.14.2
20+
with:
21+
egress-policy: audit
22+
23+
- name: Trigger Claude Update PHPDoc Types Docs
24+
env:
25+
GH_TOKEN: ${{ secrets.PHPSTAN_BOT_TOKEN }}
26+
run: gh workflow run claude-update-phpdoc-types-docs.yml --repo phpstan-bot/phpstan-src

0 commit comments

Comments
 (0)