Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unicode in branch name #326

Merged
merged 1 commit into from
Jan 25, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/sync-rest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ jobs:

# github.run_id is a unique number for each run within a repository.
# WARNING: the run_id will NOT be updated if a workflow is re-run
branch="🤖/org-wide-files/${{ github.run_id }}"
branch="org-wide-files/${{ github.run_id }}"
git checkout -b "$branch"

echo "name=$branch" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-tooling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ jobs:

# github.run_id is a unique number for each run within a repository.
# WARNING: the run_id will NOT be updated if a workflow is re-run
branch="🤖/org-wide-files/${{ github.run_id }}"
branch="org-wide-files/${{ github.run_id }}"
git checkout -b "$branch"

echo "name=$branch" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-tracks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ jobs:

# github.run_id is a unique number for each run within a repository.
# WARNING: the run_id will NOT be updated if a workflow is re-run
branch="🤖/org-wide-files/${{ github.run_id }}"
branch="org-wide-files/${{ github.run_id }}"
git checkout -b "$branch"

echo "name=$branch" >> $GITHUB_OUTPUT
Expand Down