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 36f979d commit 7705c0eCopy full SHA for 7705c0e
.github/workflows/action.yaml
@@ -1,17 +1,11 @@
1
-name: GitHub Actions Demo
2
-on: [push]
3
-jobs:
4
- Explore-GitHub-Actions:
5
- runs-on: ubuntu-latest
+name: Test
+description: 'composite run action'
+
+runs:
+ using: "composite"
6
+ steps:
7
steps:
- - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
8
- - uses: actions/github-script@v4
9
- with:
10
- script: |
11
- var fs = require('fs');
12
- try {
13
- fs.mkdirSync('./.github/conditional/tmp', {recursive: true});
14
- } catch {
15
- }
16
- fs.writeFileSync('./.github/conditional/tmp/action.yml', 'name: Actions Demo');
17
- - uses: ./.github/conditional/tmp
+ - name: Echo
+ shell: bash
+ run: |
+ echo Heyyyyy
0 commit comments