Skip to content

Commit

Permalink
Merge pull request #25 from devilbox/release-0.29
Browse files Browse the repository at this point in the history
Release 0.29
  • Loading branch information
cytopia authored Feb 23, 2022
2 parents 1d97acf + fb9005a commit a216105
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# The labels in this file are automatically synced with the repository
# using the micnncim/action-label-syncer action.
---
- name: C-dependency
color: 1abc9c
description: "Category: Dependency"
- name: PR-block
color: 3498db
description: "Pull Request: Do not merge"
- name: PR-merge
color: 3498db
description: "Pull Request: Merge when ready"
3 changes: 1 addition & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ name: nightly
on:
# Runs daily
schedule:
- cron: "*/10 * * * *"
#- cron: '0 0 * * *'
- cron: '0 0 * * *'


###
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/repository.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Repository

on:
push:
branches:
- master
paths:
- .github/labels.yml

jobs:
labels:
name: Labels
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Sync labels
uses: micnncim/action-label-syncer@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
manifest: .github/labels.yml

0 comments on commit a216105

Please sign in to comment.