Skip to content

Commit 22acfe4

Browse files
authored
Add shells to action (#31)
trying again
1 parent ff4d6d4 commit 22acfe4

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: v0.0.41-11-gd8f320a
2+
_commit: v0.0.41-12-gac9541a
33
_src_path: gh:LabAutomationAndScreening/copier-base-template.git
44
description: Copier template for creating Python libraries and executables
55
python_ci_versions:

.github/actions/update-devcontainer-hash/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ runs:
1717
run: |
1818
echo "Action can only be run by dependabot[bot], but was invoked by ${GITHUB_ACTOR}." >&2
1919
exit 1
20+
shell: bash
2021

2122
- name: Checkout code
2223
uses: actions/checkout@v4.2.2
@@ -29,10 +30,12 @@ runs:
2930
run: |
3031
git config user.name "github-actions[bot]"
3132
git config user.email "github-actions[bot]@users.noreply.github.com"
33+
shell: bash
3234

3335
- name: Update devcontainer hash
3436
run: |
3537
python3 .github/workflows/hash_git_files.py . --for-devcontainer-config-update --exit-zero
38+
shell: bash
3639

3740
- name: Commit & push changes
3841
run: |
@@ -43,3 +46,4 @@ runs:
4346
else
4447
echo "No changes to commit"
4548
fi
49+
shell: bash

template/.github/actions/update-devcontainer-hash/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ runs:
1717
run: |
1818
echo "Action can only be run by dependabot[bot], but was invoked by ${GITHUB_ACTOR}." >&2
1919
exit 1
20+
shell: bash
2021

2122
- name: Checkout code
2223
uses: actions/checkout@v4.2.2
@@ -29,10 +30,12 @@ runs:
2930
run: |
3031
git config user.name "github-actions[bot]"
3132
git config user.email "github-actions[bot]@users.noreply.github.com"
33+
shell: bash
3234

3335
- name: Update devcontainer hash
3436
run: |
3537
python3 .github/workflows/hash_git_files.py . --for-devcontainer-config-update --exit-zero
38+
shell: bash
3639

3740
- name: Commit & push changes
3841
run: |
@@ -43,3 +46,4 @@ runs:
4346
else
4447
echo "No changes to commit"
4548
fi
49+
shell: bash

0 commit comments

Comments
 (0)