Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: v0.0.41-22-gd7c5bcd
_commit: v0.0.41-24-g20eac2f
_src_path: gh:LabAutomationAndScreening/copier-base-template.git
description: Copier template for creating Python libraries and executables
python_ci_versions:
Expand Down
27 changes: 0 additions & 27 deletions .github/renovate.json5

This file was deleted.

15 changes: 1 addition & 14 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,7 @@ permissions:

jobs:
get-values:
runs-on: ubuntu-24.04
outputs:
new-dependabot-sha: ${{ steps.update-hash.outputs.new-sha }}
dependabot-commit-created: ${{ steps.update-hash.outputs.commit-created }}
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2

- name: Update Devcontainer Hash
if: ${{ github.actor == 'dependabot[bot]' }}
id: update-hash
uses: ./.github/actions/update-devcontainer-hash
with:
branch: ${{ github.ref_name }}
uses: ./.github/workflows/get-values.yaml

pre-commit:
needs: [ get-values ]
Expand Down
34 changes: 34 additions & 0 deletions .github/workflows/get-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Get Values

on:
workflow_call:
outputs:
new-dependabot-sha:
description: BUILD_HASH
value: ${{ jobs.get-values.outputs.new-dependabot-sha }}
dependabot-commit-created:
description: whether or not a commit was created on a dependabot branch
value: ${{ jobs.get-values.outputs.dependabot-commit-created }}

env:
PYTHONUNBUFFERED: True

permissions:
contents: write # needed to push commit of new devcontainer hash for dependabot PRs

jobs:
get-values:
runs-on: ubuntu-24.04
outputs:
new-dependabot-sha: ${{ steps.update-hash.outputs.new-sha }}
dependabot-commit-created: ${{ steps.update-hash.outputs.commit-created }}
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2

- name: Update Devcontainer Hash
if: ${{ github.actor == 'dependabot[bot]' }}
id: update-hash
uses: ./.github/actions/update-devcontainer-hash
with:
branch: ${{ github.ref_name }}
6 changes: 0 additions & 6 deletions template/.github/renovate.json5.jinja

This file was deleted.