Skip to content

Commit 7b6a8da

Browse files
committed
fix 🐛(ci): implement flag yes to tasks (#15)
Signed-off-by: Luis Mayta <luis@hadenlabs.com>
1 parent 23195ca commit 7b6a8da

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
uses: arduino/setup-task@v1
3030

3131
- name: Install changelog
32-
run: task changelog:install
32+
run: task changelog:install --yes
3333

3434
- name: Check dependences
35-
run: task changelog:check
35+
run: task changelog:check --yes
3636

3737
- id: get_version
3838
uses: battila7/get-version-action@v2
@@ -42,7 +42,7 @@ jobs:
4242
echo "APP_TAG=${{ steps.get_version.outputs.version-without-v }}" >> $GITHUB_ENV
4343
4444
- name: Generate changelog
45-
run: task changelog:tag
45+
run: task changelog:tag --yes
4646

4747
- name: Create Release
4848
if: ${{ !env.ACT }}
@@ -55,4 +55,4 @@ jobs:
5555
release_name: ${{ env.APP_TAG }}
5656
draft: false
5757
prerelease: false
58-
body_path: ${{ env.TMP_CHANGELOG_FILENAME }}
58+
body_path: ${{ env.TMP_CHANGELOG_FILENAME }}

.github/workflows/sonarqube.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ jobs:
3333

3434
- name: Scan Sonar
3535
if: ${{ !env.ACT }}
36-
run: task sonar:scan
36+
run: task sonar:scan --yes

0 commit comments

Comments
 (0)