chore(deps): update dependency determinatesystems/flake-checker-actio… #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jobs: | |
render_dhall_changes: | |
if: "${{github.actor == 'renovate[bot]'}}" | |
name: Render Dhall changes | |
permissions: | |
contents: write | |
"runs-on": "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "DeterminateSystems/nix-installer-action@v11" | |
- run: | | |
#!/usr/bin/env bash | |
set -euo pipefail | |
for file in .github/workflows/*.dhall; do | |
nix shell nixpkgs#dhall-yaml -c dhall-to-yaml-ng --file "$file" >"${file%.dhall}.yml" | |
done | |
- uses: "EndBug/[email protected]" | |
with: | |
author_email: "<29139614+renovate[bot]@users.noreply.github.com>" | |
author_name: "renovate[bot]" | |
message: Render Dhall changes | |
name: "renovate-post" | |
'on': | |
push: | |
branches: | |
- "renovate/*" |