Skip to content

Commit

Permalink
Have dependabot update github actions (#12)
Browse files Browse the repository at this point in the history
* The one with dependabot configs

* don't build on dependabot yaml
  • Loading branch information
tvalenta authored Sep 1, 2023
1 parent a34deb6 commit 7ff7f9b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
13 changes: 11 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
---
name: Go

on:
push:
branches: [ "main" ]
tags:
- '*'
- '*'
pull_request:
branches: [ "main" ]
paths-ignore:
- '**/*.md'
- .github/dependabot.yml
workflow_dispatch:

concurrency:
# yamllint disable-line rule:line-length
group: ${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -163,4 +172,4 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: personalities.tar.gz
asset_name: personalities.tar.gz
asset_content_type: application/gzip
asset_content_type: application/gzip

0 comments on commit 7ff7f9b

Please sign in to comment.