Skip to content

Commit

Permalink
First attempt at composite action
Browse files Browse the repository at this point in the history
  • Loading branch information
heerener committed Oct 3, 2024
1 parent 1c9477f commit e2c8012
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/actions/test_composite_action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: Test Composite Action
description: test how composite actions work
runs:
using: composite
steps:
- name: clone repo
uses: actions/checkout@v4
- name: Use a secret
env:
TEST_SECRET: ${{ secrets.TEST_SECRET }}
run: |-
echo "The secret is ${TEST_SECRET}"
File renamed without changes.
File renamed without changes.

0 comments on commit e2c8012

Please sign in to comment.