Skip to content

Commit

Permalink
add two test workflows with and without param
Browse files Browse the repository at this point in the history
  • Loading branch information
quillcraftsman committed Jan 30, 2024
1 parent da02c08 commit 8ad075f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test_with_param.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Test Action With Param

on:
push:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Test Action With Param
uses: libresource/action-template@master
with:
param-example: 'Hello GitHub!'
12 changes: 12 additions & 0 deletions .github/workflows/test_without_param.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Test Action Without Param

on:
push:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Test Action Without Param
uses: libresource/action-template@master

0 comments on commit 8ad075f

Please sign in to comment.