Skip to content

Commit 51d20f8

Browse files
committed
Use master instead of main
1 parent be47e40 commit 51d20f8

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
on:
22
push:
33
branches:
4-
- main
4+
- master
55
pull_request:
66
branches:
7-
- main
7+
- master
88
jobs:
99
build:
1010
runs-on: ubuntu-latest

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
steps:
1010
- name: Checkout
1111
uses: actions/checkout@v2
12-
- name: Verify commit exists in origin/main
12+
- name: Verify commit exists in origin/master
1313
run: |
1414
git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
15-
git branch --remote --contains | grep origin/main
15+
git branch --remote --contains | grep origin/master
1616
- name: Set VERSION variable from tag
1717
run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV
1818
- name: Build

src/EntityFramework.Extensions.AddQueryFilter.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EntityFramework.Extensions.AddQueryFilter", "EntityFramework.Extensions.AddQueryFilter.csproj", "{B49CB0AA-BD8F-4E18-82BC-8388DB360E31}"
44
EndProject
5+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionItems", "SolutionItems", "{FE59801D-D9B5-4D4C-844A-4A4080B79E7F}"
6+
ProjectSection(SolutionItems) = preProject
7+
..\.github\workflows\ci.yml = ..\.github\workflows\ci.yml
8+
..\.github\workflows\release.yml = ..\.github\workflows\release.yml
9+
EndProjectSection
10+
EndProject
511
Global
612
GlobalSection(SolutionConfigurationPlatforms) = preSolution
713
Debug|Any CPU = Debug|Any CPU

0 commit comments

Comments
 (0)