File tree Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 1+ on : [push]
2+
3+ jobs :
4+ hello_world_job :
5+ runs-on : ubuntu-latest
6+ name : A job to say validate the action
7+ steps :
8+ # To use this repository's private action,
9+ # you must check out the repository
10+ - name : Checkout
11+ uses : actions/checkout@v4
12+ - name : Tidal Doctor action step
13+ uses : ./ # Uses an action in the root directory
14+ with :
15+ tidal-email : ' ${{ secrets.TIDAL_EMAIL }}'
16+ tidal-url : ' ${{ secrets.TIDAL_URL }}'
17+ tidal-password : ' ${{ secrets.TIDAL_PASSWORD }}'
18+ id : hello
Original file line number Diff line number Diff line change 1+ name : ' Tidal Tools Code Analysis'
2+ description : ' Run tidal'
3+ inputs :
4+ tidal-email : # id of input
5+ description : ' Who to greet'
6+ required : true
7+ tidal-password :
8+ description : ' Who to greet'
9+ required : true
10+ tidal-url :
11+ description : ' Who to greet'
12+ required : true
13+ runs :
14+ using : ' docker'
15+ image : ' gcr.io/tidal-1529434400027/tidal-tools:latest'
16+ args :
17+ - ' doctor'
18+ - ' --tidal-email'
19+ - ' ${{inputs.tidal-email}}'
20+ - ' --tidal-password'
21+ - ' ${{inputs.tidal-password}}'
22+ - ' --tidal-url'
23+ - ' ${{inputs.tidal-url}}'
24+
You can’t perform that action at this time.
0 commit comments