neon_arch commited on
Commit
15b0e38
1 Parent(s): a301be7

Update releases.yml

Browse files
Files changed (1) hide show
  1. .github/workflows/releases.yml +4 -4
.github/workflows/releases.yml CHANGED
@@ -5,11 +5,11 @@ on:
5
  - rolling
6
 
7
  concurrency:
8
- group: "main-branch"
9
 
10
  jobs:
11
  changelog:
12
- if: github.repository == 'neon-mmd/websurfx '
13
  runs-on: ubuntu-latest
14
 
15
  steps:
@@ -43,7 +43,7 @@ jobs:
43
  uses: TriPSs/conventional-changelog-action@v3
44
  with:
45
  github-token: ${{ secrets.GITHUB_TOKEN }}
46
- version-file: "./package.json,./package-lock.json,./config/app.json"
47
  git-branch: "release-from-${{ github.sha }}"
48
  skip-on-empty: false
49
  skip-git-pull: true
@@ -51,7 +51,7 @@ jobs:
51
  # create PR using GitHub CLI
52
  - name: create PR with release info
53
  id: create-pr
54
- run: gh pr create --base main --head release-from-${{ github.sha }} --title 'Merge new release into main' --body 'Created by Github action'
55
  env:
56
  GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
57
 
 
5
  - rolling
6
 
7
  concurrency:
8
+ group: "rolling-branch"
9
 
10
  jobs:
11
  changelog:
12
+ if: github.repository == 'neon-mmd/websurfx'
13
  runs-on: ubuntu-latest
14
 
15
  steps:
 
43
  uses: TriPSs/conventional-changelog-action@v3
44
  with:
45
  github-token: ${{ secrets.GITHUB_TOKEN }}
46
+ version-file: "./Cargo.toml"
47
  git-branch: "release-from-${{ github.sha }}"
48
  skip-on-empty: false
49
  skip-git-pull: true
 
51
  # create PR using GitHub CLI
52
  - name: create PR with release info
53
  id: create-pr
54
+ run: gh pr create --base main --head release-from-${{ github.sha }} --title 'Merge new release into rolling' --body 'Created by Github action'
55
  env:
56
  GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
57