Prepare release v3.5 (#168)

This commit is contained in:
Simon Lecoq
2021-03-14 15:50:08 +01:00
committed by GitHub
parent 2a83a802c7
commit 06d2148f42
8 changed files with 9 additions and 14 deletions

View File

@@ -26,7 +26,6 @@ To support private repositories, add full `repo` scope to your personal token.
with:
# ... other options
token: ${{ secrets.METRICS_TOKEN }} # A personal token from an user account with read:org scope
committer_token: ${{ secrets.GITHUB_TOKEN }} # GitHub auto-generated token
user: organization-name # Organization name
```

View File

@@ -60,8 +60,8 @@ on:
# Schedule updates (each hour)
schedule: [{cron: "0 * * * *"}]
# Lines below let you run workflow manually and on each commit (optional)
push: {branches: ["master", "main"]}
workflow_dispatch:
push: {branches: ["master", "main"]}
jobs:
github-metrics:
runs-on: ubuntu-latest
@@ -71,8 +71,6 @@ jobs:
with:
# Your GitHub token
token: ${{ secrets.METRICS_TOKEN }}
# GITHUB_TOKEN is a special auto-generated token restricted to current repository, which is used to push files in it
committer_token: ${{ secrets.GITHUB_TOKEN }}
```
See all supported options in [action.yml](action.yml).