Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

CI fixes #1510

Merged
merged 4 commits into from
Aug 10, 2022
Merged
Show file tree
Hide file tree
Changes from 2 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
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/release-client.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Release Checklist for Client - issue template
name: Release Checklist for Client
about: Release Checklist for Client
title: Release Checklist - Client {{ env.VERSION }}
title: Release Checklist for Client {{ env.VERSION }}
---

# Release Checklist - Client
Expand Down
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/release-runtime.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Release issue template
about: Tracking issue for new releases
title: Cumulus {{ env.VERSION }} Release checklist
name: Release Checklist for Runtime
about: Release Checklist for Runtime
title: Release Checklist for Runtime {{ env.VERSION }}
---

# Release Checklist - Runtimes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-01_branch-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
workflow_dispatch:

jobs:
tag_rc:
check_branch:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/github/check-rel-br
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

grv=$(git remote --verbose | grep push)
export RUST_LOG=none
REPO=$(echo "$grv" | cut -d ' ' -f1 | cut -d$'\t' -f2 | cut -d '/' -f2 | cut -d '.' -f1 | sort | uniq)
REPO=$(echo "$grv" | cut -d ' ' -f1 | cut -d$'\t' -f2 | sed 's/.*github.com\/\(.*\)/\1/g' | cut -d '/' -f2 | cut -d '.' -f1 | sort | uniq)
echo "[+] Detected repo: $REPO"

BRANCH=$(git branch --show-current)
Expand Down