Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
Add action for checking the reuse compliance status
Browse files Browse the repository at this point in the history
  • Loading branch information
damyan committed Feb 28, 2024
1 parent 4f2ced4 commit 99a2e5c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-merge.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Dependabot auto-approve
on: pull_request_target
on: pull_request

permissions:
pull-requests: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
paths-ignore:
- 'docs/**'
- '**/*.md'
pull_request_target:
pull_request:
paths-ignore:
- 'docs/**'
- '**/*.md'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches:
- main
pull_request_target:
pull_request:

jobs:
update_release_draft:
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/reuse.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: REUSE Compliance Check

on: pull_request

jobs:
test:
name: reuse
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: REUSE Compliance Check
uses: fsfe/reuse-action@v2

0 comments on commit 99a2e5c

Please sign in to comment.