Compare commits
No commits in common. "releases/v3" and "v3.19.0" have entirely different histories.
releases/v
...
v3.19.0
|
@ -7,6 +7,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
run-tag-latest:
|
run-tag-latest:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ !env.ACT }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
|
|
@ -114,19 +114,12 @@ Make sure to install all required packages in the workflow before executing this
|
||||||
Uses all the defaults
|
Uses all the defaults
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
|
|
||||||
- name: Conventional Changelog Action
|
- name: Conventional Changelog Action
|
||||||
uses: TriPSs/conventional-changelog-action@v3
|
uses: TriPSs/conventional-changelog-action@v3
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.github_token }}
|
github-token: ${{ secrets.github_token }}
|
||||||
```
|
```
|
||||||
|
|
||||||
Write permissions are required in order to enable `git push` when a new version is generated. In some configurations, the
|
|
||||||
default `secrets.github_token` may not have the correct permissions. You can check your default permissions by looking at
|
|
||||||
"Set up job" section of your GitHub action run log.
|
|
||||||
|
|
||||||
Overwrite everything
|
Overwrite everything
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
|
|
|
@ -40,7 +40,7 @@ module.exports = new (class Git {
|
||||||
|
|
||||||
// Update the origin
|
// Update the origin
|
||||||
if (githubToken) {
|
if (githubToken) {
|
||||||
await this.updateOrigin(`http://x-access-token:${githubToken}@${gitUrl}/${GITHUB_REPOSITORY}.git`)
|
await this.updateOrigin(`https://x-access-token:${githubToken}@${gitUrl}/${GITHUB_REPOSITORY}.git`)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue