Skip to content

Commit 95076d0

Browse files
committed
Specify shell in workflows
1 parent b2fc9cf commit 95076d0

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/automerge.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ jobs:
1616
env:
1717
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
1818
if: env.RELEASE_TOKEN != ''
19+
shell: bash
1920
run: echo "${RELEASE_TOKEN}" | gh auth login --with-token
2021
- name: Enable auto-merge for Dependabot PRs
22+
shell: bash
2123
run: |
2224
# Checking the PR title is a poor substitute for the actual PR changes
2325
# but as long as this is used only with dependabot PRs,

.github/workflows/yamllint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
- name: Check out
1919
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2020
- name: Install YAMLLint
21+
shell: bash
2122
run: sudo pip install yamllint
2223
- name: Run YAMLLint
24+
shell: bash
2325
run: "yamllint -d '{extends: relaxed, rules: {line-length: disable, trailing-spaces: disable}}' ."

0 commit comments

Comments
 (0)