Skip to content

Commit

Permalink
add workflow-tester 65
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume Falourd <[email protected]>
  • Loading branch information
GuillaumeFalourd committed Oct 20, 2022
1 parent b0e22eb commit 970c0d1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/workflow-tester64.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Test 64 # Related to https://stackoverflow.com/questions/74125082/new-format-of-output-in-custom-github-actions-since-set-output-is-going-to-be-de

on:
push:
#push:
workflow_dispatch:

jobs:
job1:
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/workflow-tester65.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Test 65 # Related to https://stackoverflow.com/questions/18995854/how-can-i-use-github-api-to-get-all-tags-or-releases-for-a-project

on:
push:

jobs:
job1:
runs-on: ubuntu-latest
steps:
- run: |
curl \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer $TOKEN" \
https://api.github.com/repos/GuillaumeFalourd/poc-github-actions/tags
env:
TOKEN: ${{ secrets.ACCESS_TOKEN }}

0 comments on commit 970c0d1

Please sign in to comment.