File tree 2 files changed +2
-19
lines changed
2 files changed +2
-19
lines changed Original file line number Diff line number Diff line change 71
71
env :
72
72
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
73
73
74
- pre_job :
75
- needs : linter
76
- # continue-on-error: true # Uncomment once integration is finished
77
- runs-on : ubuntu-latest
78
- # Map a step output to a job output
79
- outputs :
80
- should_skip : ${{ steps.skip_check.outputs.should_skip }}
81
- steps :
82
- - id : skip_check
83
- uses : fkirc/skip-duplicate-actions@master
84
- with :
85
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
86
- paths_ignore : ' ["**/README.md"]'
87
-
88
74
build :
89
75
needs : changes
90
76
runs-on : macos-latest # Macos includes virtualbox and vagrant.
@@ -118,10 +104,7 @@ jobs:
118
104
path : packer/output-hashistack/package.box
119
105
120
106
test :
121
- needs :
122
- - pre_job
123
- - build
124
- if : needs.pre_job.outputs.should_skip != 'true'
107
+ needs : build
125
108
runs-on : macos-latest
126
109
127
110
strategy :
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## [ 0.8.0 UNRELEASED ]
3
+ ## [ 0.8.0]
4
4
5
5
### Added
6
6
- Added skip-duplicate-runs #423
You can’t perform that action at this time.
0 commit comments