Skip to content

Commit

Permalink
action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
GitGinocchio committed Aug 27, 2024
1 parent b9062fb commit a40dbcc
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
CLIENT_ID: ${{ secrets.CLIENT_ID }}
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }}
REFRESH_TOKEN: ${{ secrets.REFRESH_TOKEN }}
run: python main.py
run: python action.py

- name: commit files
run: |
Expand Down
File renamed without changes.
15 changes: 15 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 'My GitHub Action'
description: 'A short description of my GitHub Action'
inputs:
example_input:
description: 'An example input'
required: true
default: 'default_value'
outputs:
example_output:
description: 'An example output'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.example_input }}

0 comments on commit a40dbcc

Please sign in to comment.