ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

enable automerge on flake-lock-updates

Signed-off-by: marshmallow <github@althaea.zone>

authored by

marshmallow and committed by
GitHub
b295c74f aa39aa64

+7
+7
.github/workflows/follow-nixpkgs.yml
··· 40 40 id: date 41 41 run: echo "date=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT" 42 42 - name: Create Pull Request 43 + id: cpr 43 44 uses: peter-evans/create-pull-request@v7 44 45 with: 45 46 title: Update flake.lock ${{ steps.date.outputs.date }} 46 47 labels: flake-lock-update 47 48 branch: ci/flake-update 49 + - name: Enable automerge 50 + if: steps.cpr.outputs.pull-request-number 51 + run: gh pr merge --squash --auto "${{ steps.cpr.outputs.pull-request-number }}" 52 + env: 53 + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 54 +