Skip to content

Commit 1c1ff97

Browse files
committed
Test workflow
1 parent b054374 commit 1c1ff97

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Test Workflow
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- "2.2.x"
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
actionlint:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
16+
with:
17+
token: ${{ secrets.PHPSTAN_BOT_FORK_TOKEN }}
18+
- run: "cat README.md"
19+
- run: "echo blabla >> README.md"
20+
21+
- run: |
22+
git config user.name "phpstan-bot"
23+
git config user.email "ondrej+phpstanbot@mirtes.cz"
24+
git commit -a -m 'test cm'
25+
git push

0 commit comments

Comments
 (0)