Skip to content
This repository was archived by the owner on Jan 10, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 30 additions & 30 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
name: Build

on:
push:
branches-ignore:
- "dependabot/**"
tags-ignore:
- "*.*"
paths-ignore:
- "*.md"
pull_request:

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v2.4.0
with:
fetch-depth: 0
- name: Build with cake
uses: cake-build/cake-action@v1.4.0
with:
script-path: setup.cake
target: CI
verbosity: Diagnostic
cake-version: 1.0.0
name: Build
on:
push:
branches-ignore:
- "dependabot/**"
tags-ignore:
- "*.*"
paths-ignore:
- "*.md"
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3.1.0
with:
fetch-depth: 0
- name: Build with cake
uses: cake-build/cake-action@v1.4.0
with:
script-path: setup.cake
target: CI
verbosity: Diagnostic
cake-version: 1.0.0
50 changes: 25 additions & 25 deletions .github/workflows/closemilestones.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
name: Close Milestones

on:
release:
types: [published]

jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ACTIONS_ALLOW_UNSECURE_COMMANDS: "true"

steps:
- uses: actions/checkout@v2.4.0
with:
fetch-depth: 0
- name: Build with cake
uses: cake-build/cake-action@v1.4.0
with:
script-path: setup.cake
target: Close-Milestones
verbosity: Diagnostic
cake-version: 1.0.0
cake-bootstrap: true
name: Close Milestones
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ACTIONS_ALLOW_UNSECURE_COMMANDS: "true"
steps:
- uses: actions/checkout@v3.1.0
with:
fetch-depth: 0
- name: Build with cake
uses: cake-build/cake-action@v1.4.0
with:
script-path: setup.cake
target: Close-Milestones
verbosity: Diagnostic
cake-version: 1.0.0
cake-bootstrap: true
78 changes: 39 additions & 39 deletions .github/workflows/releasenotes.yaml
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
name: Create Release Notes

on:
push:
branches:
- master
paths-ignore:
- "*.md"
- ".github/**"
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ACTIONS_ALLOW_UNSECURE_COMMANDS: "true"

steps:
- uses: actions/checkout@v2.4.0
with:
fetch-depth: 0
- name: Build Release Notes
uses: cake-build/cake-action@v1.4.0
with:
script-path: setup.cake
target: Build-ReleaseNotes
verbosity: Diagnostic
cake-version: 1.0.0
cake-bootstrap: true
- name: Commit Changelog
uses: EndBug/add-and-commit@v7
with:
add: Changelog.md
message: "(docs) Updated changelog"
- name: Push Changelog
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
name: Create Release Notes
on:
push:
branches:
- master
paths-ignore:
- "*.md"
- ".github/**"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ACTIONS_ALLOW_UNSECURE_COMMANDS: "true"
steps:
- uses: actions/checkout@v3.1.0
with:
fetch-depth: 0
- name: Build Release Notes
uses: cake-build/cake-action@v1.4.0
with:
script-path: setup.cake
target: Build-ReleaseNotes
verbosity: Diagnostic
cake-version: 1.0.0
cake-bootstrap: true
- name: Commit Changelog
uses: EndBug/add-and-commit@v7
with:
add: Changelog.md
message: "(docs) Updated changelog"
- name: Push Changelog
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}