Skip to content

Commit 176c92e

Browse files
authored
Branch rename cleanup (#976)
* Update pipeline build tag The build status was still looking for a "master" branch, updated it to point to "main" * Update ios.yml * Update android.yml * Update azure-pipelines.yml * Update CONTRIBUTING.md
1 parent 84aeb59 commit 176c92e

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/android.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: CI_Android
22
on:
33
push:
4-
branches: [ master ]
4+
branches: [ main ]
55
pull_request:
6-
branches: [ master ]
6+
branches: [ main ]
77

88
jobs:
99
Android:
@@ -47,4 +47,4 @@ jobs:
4747
adb shell find /data/local/tmp/tests -maxdepth 1 -exec chmod +x {} \\\;
4848
4949
- name: Test
50-
run: adb shell find /data/local/tmp/tests -name "*_tests" -maxdepth 1 -exec {} \\\;
50+
run: adb shell find /data/local/tmp/tests -name "*_tests" -maxdepth 1 -exec {} \\\;

.github/workflows/ios.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: CI_iOS
22
on:
33
push:
4-
branches: [ master ]
4+
branches: [ main ]
55
pull_request:
6-
branches: [ master ]
6+
branches: [ main ]
77

88
jobs:
99
iOS:

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Please submit a Contributor License Agreement (CLA) before submitting a pull req
1717
Your pull request should:
1818

1919
* Include a description of what your change intends to do
20-
* Be a child commit of a reasonably recent commit in the **master** branch
20+
* Be a child commit of a reasonably recent commit in the **main** branch
2121
* Requests need not be a single commit, but should be a linear sequence of commits (i.e. no merge commits in your PR)
2222
* It is desirable, but not necessary, for the tests to pass at each commit. Please see [README.md](./README.md) for instructions to build the test suite.
2323
* Have clear commit messages

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# GSL: Guidelines Support Library
2-
[![Build Status](https://dev.azure.com/cppstat/GSL/_apis/build/status/microsoft.GSL?branchName=master)](https://dev.azure.com/cppstat/GSL/_build/latest?definitionId=1&branchName=master)
2+
[![Build Status](https://dev.azure.com/cppstat/GSL/_apis/build/status/microsoft.GSL?branchName=main)](https://dev.azure.com/cppstat/GSL/_build/latest?definitionId=1&branchName=main)
33

44
The Guidelines Support Library (GSL) contains functions and types that are suggested for use by the
55
[C++ Core Guidelines](https://github.com/isocpp/CppCoreGuidelines) maintained by the [Standard C++ Foundation](https://isocpp.org).

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
trigger:
2-
- master
2+
- main
33

44
pr:
55
autoCancel: true

0 commit comments

Comments
 (0)