-
-
Notifications
You must be signed in to change notification settings - Fork 492
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #726 from EdwardCooke/ec-fixinggitattributes
fixinggitattributes
- Loading branch information
Showing
335 changed files
with
38,672 additions
and
38,672 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
*.* text eol=crlf | ||
*.sh text eol=lf | ||
*.cs text eol=crlf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
name: Create a new release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
ref: | ||
description: Commit name to release (defaults to master) | ||
required: false | ||
|
||
jobs: | ||
release: | ||
name: Draft Release | ||
runs-on: ubuntu-latest | ||
env: | ||
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.event.inputs.ref }} | ||
|
||
- name: Install GitVersion.Tool | ||
run: dotnet tool install --global GitVersion.Tool | ||
|
||
- name: Create draft release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: ./build.sh CreateGithubRelease | ||
name: Create a new release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
ref: | ||
description: Commit name to release (defaults to master) | ||
required: false | ||
|
||
jobs: | ||
release: | ||
name: Draft Release | ||
runs-on: ubuntu-latest | ||
env: | ||
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.event.inputs.ref }} | ||
|
||
- name: Install GitVersion.Tool | ||
run: dotnet tool install --global GitVersion.Tool | ||
|
||
- name: Create draft release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: ./build.sh CreateGithubRelease |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
name: Check Yaml Syntax | ||
|
||
on: | ||
issues: | ||
types: [ opened, edited ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check syntax on YAML code blocks | ||
uses: docker://aaubry/yamldotnet-syntax-checker:latest | ||
with: | ||
args: -repository ${{ github.repository }} -issueNumber ${{ github.event.issue.number }} -apiToken ${{ secrets.BOT_TOKEN }} | ||
name: Check Yaml Syntax | ||
|
||
on: | ||
issues: | ||
types: [ opened, edited ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check syntax on YAML code blocks | ||
uses: docker://aaubry/yamldotnet-syntax-checker:latest | ||
with: | ||
args: -repository ${{ github.repository }} -issueNumber ${{ github.event.issue.number }} -apiToken ${{ secrets.BOT_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
name: Test build | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
ref: | ||
description: Commit name (defaults to master) | ||
required: false | ||
target: | ||
description: Command line | ||
required: true | ||
default: ResolveVersion --verbose | ||
|
||
jobs: | ||
release: | ||
name: Test build | ||
runs-on: ubuntu-latest | ||
env: | ||
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.event.inputs.ref }} | ||
|
||
- name: Install GitVersion.Tool | ||
run: dotnet tool install --global GitVersion.Tool | ||
|
||
- name: Build | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }} | ||
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }} | ||
TWITTER_CONSUMER_API_KEY: ${{ secrets.TWITTER_CONSUMER_API_KEY }} | ||
TWITTER_CONSUMER_API_SECRET: ${{ secrets.TWITTER_CONSUMER_API_SECRET }} | ||
run: ./build.sh ${{ github.event.inputs.target }} | ||
name: Test build | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
ref: | ||
description: Commit name (defaults to master) | ||
required: false | ||
target: | ||
description: Command line | ||
required: true | ||
default: ResolveVersion --verbose | ||
|
||
jobs: | ||
release: | ||
name: Test build | ||
runs-on: ubuntu-latest | ||
env: | ||
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.event.inputs.ref }} | ||
|
||
- name: Install GitVersion.Tool | ||
run: dotnet tool install --global GitVersion.Tool | ||
|
||
- name: Build | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }} | ||
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }} | ||
TWITTER_CONSUMER_API_KEY: ${{ secrets.TWITTER_CONSUMER_API_KEY }} | ||
TWITTER_CONSUMER_API_SECRET: ${{ secrets.TWITTER_CONSUMER_API_SECRET }} | ||
run: ./build.sh ${{ github.event.inputs.target }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.