Skip to content

Commit

Permalink
Basic github config
Browse files Browse the repository at this point in the history
  • Loading branch information
nicknovitski committed Oct 21, 2024
1 parent 3aeb1a9 commit 1df7960
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
13 changes: 13 additions & 0 deletions .github/workflows/new-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Release new version
on:
release:
types: [released]
permissions:
contents: write
jobs:
update-major-tag:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
source-tag: ${{ github.event.release.tag_name }}
9 changes: 9 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@V27
- run: ./test

0 comments on commit 1df7960

Please sign in to comment.