You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/codeql-analysis.yml
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -13,10 +13,10 @@ name: "CodeQL"
13
13
14
14
on:
15
15
push:
16
-
branches: [ "master" ]
16
+
branches: [ "main" ]
17
17
pull_request:
18
18
# The branches below must be a subset of the branches above
19
-
branches: [ "master" ]
19
+
branches: [ "main" ]
20
20
schedule:
21
21
- cron: '21 12 * * 1'
22
22
@@ -48,11 +48,11 @@ jobs:
48
48
# If you wish to specify custom queries, you can do so here or in a config file.
49
49
# By default, queries listed here will override any specified in a config file.
50
50
# Prefix the list here with "+" to use these queries and those in the config file.
51
-
51
+
52
52
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
53
53
# queries: security-extended,security-and-quality
54
54
55
-
55
+
56
56
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
57
57
# If this step fails, then you should remove it and run the build manually (see below)
58
58
- name: Autobuild
@@ -61,7 +61,7 @@ jobs:
61
61
# ℹ️ Command-line programs to run using the OS shell.
62
62
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
63
63
64
-
# If the Autobuild fails above, remove it and uncomment the following three lines.
64
+
# If the Autobuild fails above, remove it and uncomment the following three lines.
65
65
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
Copy file name to clipboardExpand all lines: docs/releasing.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,8 @@ Creating a new release and deploying the package to nuget are administrative tas
9
9
10
10
### Prepare the changeset & publish to nuget.org
11
11
12
-
1. Create a branch from `master` and update the version node [Octokit.GraphQL.nuspec](https://github.com/octokit/octokit.graphql.net/blob/master/Octokit.GraphQL.nuspec) with the next version.
13
-
2. Push the branch to GitHub and create a pull request. This will kick off the CI builds to verify all of the changes in master.
12
+
1. Create a branch from `main` and update the version node [Octokit.GraphQL.nuspec](https://github.com/octokit/octokit.graphql.net/blob/main/Octokit.GraphQL.nuspec) with the next version.
13
+
2. Push the branch to GitHub and create a pull request. This will kick off the CI builds to verify all of the changes in main.
14
14
3. Test! This is when you might need to run the [generator](contributing.md) or tests or simply review the changes as a set.
15
15
4. When you're satisfied with this release, create a tag `git tag v#.#.#-beta`. For example, to create a tag for 0.1.9-beta
16
16
`git tag v0.1.9-beta`
@@ -19,7 +19,7 @@ Creating a new release and deploying the package to nuget are administrative tas
19
19
7. When the tag and branch is successfully merged, the [publish workflow](https://github.com/octokit/octokit.graphql.net/actions/workflows/dotnetcore.yml) will run and build and push the package to nuget
20
20
8. Verify that the package has been uploaded to [nuget.org](https://www.nuget.org/packages/Octokit.GraphQL/)
21
21
9. Create a [new release](https://github.com/octokit/octokit.graphql.net/releases/new) using the tag you just created and click auto generate notes. Cleanup the notes up as you see fit
22
-
10. Check "This is a pre-release" and click "publish release" 🎉
22
+
10. Check "This is a pre-release" and click "publish release" 🎉
0 commit comments