File tree Expand file tree Collapse file tree 5 files changed +36
-48
lines changed Expand file tree Collapse file tree 5 files changed +36
-48
lines changed Original file line number Diff line number Diff line change 11# Changes here will be overwritten by Copier
2- _commit : v0.0.41-22-gd7c5bcd
2+ _commit : v0.0.41-24-g20eac2f
33_src_path : gh:LabAutomationAndScreening/copier-base-template.git
44description : Copier template for creating Python libraries and executables
55python_ci_versions :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -17,20 +17,7 @@ permissions:
1717
1818jobs :
1919 get-values :
20- runs-on : ubuntu-24.04
21- outputs :
22- new-dependabot-sha : ${{ steps.update-hash.outputs.new-sha }}
23- dependabot-commit-created : ${{ steps.update-hash.outputs.commit-created }}
24- steps :
25- - name : Checkout code
26- 27-
28- - name : Update Devcontainer Hash
29- if : ${{ github.actor == 'dependabot[bot]' }}
30- id : update-hash
31- uses : ./.github/actions/update-devcontainer-hash
32- with :
33- branch : ${{ github.ref_name }}
20+ uses : ./.github/workflows/get-values.yaml
3421
3522 pre-commit :
3623 needs : [ get-values ]
Original file line number Diff line number Diff line change 1+ name : Get Values
2+
3+ on :
4+ workflow_call :
5+ outputs :
6+ new-dependabot-sha :
7+ description : BUILD_HASH
8+ value : ${{ jobs.get-values.outputs.new-dependabot-sha }}
9+ dependabot-commit-created :
10+ description : whether or not a commit was created on a dependabot branch
11+ value : ${{ jobs.get-values.outputs.dependabot-commit-created }}
12+
13+ env :
14+ PYTHONUNBUFFERED : True
15+
16+ permissions :
17+ contents : write # needed to push commit of new devcontainer hash for dependabot PRs
18+
19+ jobs :
20+ get-values :
21+ runs-on : ubuntu-24.04
22+ outputs :
23+ new-dependabot-sha : ${{ steps.update-hash.outputs.new-sha }}
24+ dependabot-commit-created : ${{ steps.update-hash.outputs.commit-created }}
25+ steps :
26+ - name : Checkout code
27+ 28+
29+ - name : Update Devcontainer Hash
30+ if : ${{ github.actor == 'dependabot[bot]' }}
31+ id : update-hash
32+ uses : ./.github/actions/update-devcontainer-hash
33+ with :
34+ branch : ${{ github.ref_name }}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments