-
Notifications
You must be signed in to change notification settings - Fork 1
22 lines (19 loc) · 841 Bytes
/
release.yml
File metadata and controls
22 lines (19 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: Export audit log
on:
workflow_dispatch: # run on demand
jobs:
build:
runs-on: ubuntu-latest # use the GitHub hosted runners
steps:
- name: Upload the audit log
uses: some-natalie/gitlog-to-csv@v2
with:
repository: ${{ github.repository }} # run in the current repository
branch: "main" # set this to the branch you want to audit
gpg: "true" # include columns on GPG commit signing
include_diffs: "true" # include detailed diffs on each commit
token: ${{ github.token }} # use the default runtime token
# If you want another repository, set `repository` to "ownername/reponame" and
# the `token` to a GitHub PAT as a secret that has read access to that repo.
# For running in the current repository, this is the minimum permissions needed
# to run.