Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ jobs:
env: Development
no_override: false
desc: "Development deployment for main branch"
ref: ${{ github.ref }}
ref: "main" # dev deployment of main branch
transient: true

- name: Install VPN
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-done.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ jobs:
env: Production
no_override: false
desc: "Production deployment for latest release"
ref: ${{ github.head_ref }}
ref: "v${{ needs.create_release.outputs.version }}" # tag of current release
transient: true

- name: Install VPN
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release-branch-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
with:
destination_branch: "main"
pr_title: "Release ${{ steps.get_version.outputs.VERSION }}"
pr_body: "Next Release ${{ steps.get_version.outputs.VERSION }} almost complete. Follow the guide in `CONTRIBUTING.md`!"
pr_body: "Next Release ${{ steps.get_version.outputs.VERSION }} almost complete.
Follow the guide in [`CONTRIBUTING.md`](https://github.com/NOWUM/EnSysMod/blob/main/CONTRIBUTING.md#release-workflow-maintainer-only)!"
pr_label: "release"
github_token: ${{ secrets.GITHUB_TOKEN }}