Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #839 from staticdev/ci/general-ci-improvements
Browse files Browse the repository at this point in the history
General CI improvements
  • Loading branch information
staticdev authored Dec 18, 2022
2 parents 010135e + 74cee56 commit a2f1546
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 27 deletions.
41 changes: 22 additions & 19 deletions .github/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,61 +6,64 @@
# the GitHub Action https://github.com/marketplace/actions/github-labeler.
- name: breaking
description: Breaking Changes
color: bfd4f2
color: "bfd4f2"
- name: bug
description: Something isn't working
color: d73a4a
color: "d73a4a"
- name: build
description: Build System and Dependencies
color: bfdadc
color: "bfdadc"
- name: ci
description: Continuous Integration
color: 4a97d6
color: "4a97d6"
- name: dependencies
description: Pull requests that update a dependency file
color: 0366d6
color: "0366d6"
- name: documentation
description: Improvements or additions to documentation
color: 0075ca
color: "0075ca"
- name: duplicate
description: This issue or pull request already exists
color: cfd3d7
color: "cfd3d7"
- name: enhancement
description: New feature or request
color: a2eeef
color: "a2eeef"
- name: github_actions
description: Pull requests that update Github_actions code
color: "000000"
- name: good first issue
description: Good for newcomers
color: 7057ff
color: "7057ff"
- name: help wanted
description: Extra attention is needed
color: 008672
color: "008672"
- name: invalid
description: This doesn't seem right
color: e4e669
color: "e4e669"
- name: performance
description: Performance
color: "016175"
- name: python
description: Pull requests that update Python code
color: 2b67c6
color: "2b67c6"
- name: question
description: Further information is requested
color: d876e3
color: "d876e3"
- name: refactoring
description: Refactoring
color: ef67c4
color: "ef67c4"
- name: removal
description: Removals and Deprecations
color: 9ae7ea
description: Removals and deprecations
color: "9ae7ea"
- name: style
description: Style
color: c120e5
color: "c120e5"
- name: testing
description: Testing
color: b1fc6f
color: "b1fc6f"
- name: wontfix
description: This will not be worked on
color: ffffff
color: "ffffff"
- name: skip-changelog
description: This will not be added to release notes
color: "dddddd"
11 changes: 8 additions & 3 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
---
template: |
## Changes
$CHANGES
categories:
- title: ":boom: Breaking Changes"
label: "breaking"
Expand Down Expand Up @@ -25,7 +31,6 @@ categories:
labels:
- "dependencies"
- "build"
template: |
## Changes

$CHANGES
exclude-labels:
- "skip-changelog"
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Check documentation

on:
"on":
schedule:
- cron: "0 1 * * *" # everyday at 1am
push:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
name: Labeler

on:
"on":
push:
branches:
- main
Expand All @@ -13,6 +14,6 @@ jobs:
uses: actions/checkout@v3

- name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v4.1.0
uses: crazy-max/ghaction-github-labeler@v4
with:
skip-delete: true
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
name: Release

on:
"on":
push:
branches:
- main
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
name: Tests

on:
"on":
- push
- pull_request

Expand Down

0 comments on commit a2f1546

Please sign in to comment.