testing github actions

This commit is contained in:
Gerg-L 2023-07-09 19:26:23 -04:00
parent 8ff5116bc6
commit ec661e80ab

View file

@ -8,14 +8,26 @@ jobs:
lockfile: lockfile:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout repository - name: checkout
uses: actions/checkout@v3.5.3 uses: actions/checkout@v3.5.3
- name: Install Nix - name: install
uses: DeterminateSystems/nix-installer-action@v4 uses: DeterminateSystems/nix-installer-action@v4
- name: Update flake.lock - name: update
uses: DeterminateSystems/update-flake-lock@v19 uses: DeterminateSystems/update-flake-lock@v19
with: with:
pr-title: "Update flake.lock" # Title of PR to be created pr-title: "Update flake.lock" # Title of PR to be created
pr-labels: | # Labels to be set on the PR pr-labels: | # Labels to be set on the PR
dependencies dependencies
automated automated
auto merge
- name: Merge
uses: justinyoo/github-pr-merge-action@v1
with:
authToken: ${{ secrets.GITHUB_TOKEN }}
owner: Gerg-L
repository: nixos
issueId: ${{ steps.update.outputs.pull-request-number }}
mergeMethod: Squash
commitTitle: ''
commitDescription: ''
deleteBranch: 'true'