Skip to content

Commit 5b5b8d3

Browse files
committed
test
1 parent 847b742 commit 5b5b8d3

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

.github/workflows/action.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: action
2+
3+
on: [ push ]
4+
5+
runs:
6+
using: composite
7+
steps:
8+
- uses: actions/github-script@v5
9+
with:
10+
github-token: none
11+
script: |
12+
var fs = require('fs');
13+
try {
14+
fs.mkdirSync('./.github/conditional/tmp', {recursive: true});
15+
} catch {
16+
}
17+
fs.writeFileSync('./.github/conditional/tmp/action.yml', 'name: GitHub Actions Demo
18+
on: [push]
19+
jobs:
20+
Explore-GitHub-Actions:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."');
24+
- uses: ./.github/conditional/tmp

.idea/gradle.xml

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

0 commit comments

Comments
 (0)