This repository has been archived by the owner on Apr 12, 2023. It is now read-only.
forked from yb/uptime-status
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
129 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
- name: "bug" | ||
color: "d73a4a" | ||
description: "Something isn't working" | ||
- name: "docs" | ||
color: "0075ca" | ||
description: "Improvements or additions to documentation" | ||
- name: "dev" | ||
color: "7c2bc8" | ||
description: "Developers team" | ||
- name: "empty" | ||
color: "bfdadc" | ||
description: "Note for myself" | ||
- name: "feature" | ||
color: "006b75" | ||
description: "Feature for project" | ||
- name: "git" | ||
color: "bfdadc" | ||
description: "Github things" | ||
- name: "help" | ||
color: "008672" | ||
description: "Extra attention is needed" | ||
- name: "img" | ||
color: "6697F1" | ||
description: "Design things" | ||
- name: "invalid" | ||
color: "e4e669" | ||
description: "This doesn't seem right" | ||
- name: "question" | ||
color: "d876e3" | ||
description: "Further information is requested" | ||
- name: "smm" | ||
color: "48959B" | ||
description: "SMM Team" | ||
- name: "solved" | ||
color: "2F73C5" | ||
description: "Case are solved" | ||
- name: "todo" | ||
color: "C69C22" | ||
description: "Work-Walk?" | ||
- name: "web" | ||
color: "46AC05" | ||
description: "Web developers" | ||
- name: "wontfix" | ||
color: "ffffff" | ||
description: "This will not be worked on" |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Add issues to General | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
|
||
jobs: | ||
add-to-general: | ||
name: Add issue to General | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/hostlikepro/projects/4 | ||
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Manage Your Labels | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
paths: | ||
- '.github/labels.yml' | ||
- '.github/workflows/manage-your-labels.yml' | ||
|
||
jobs: | ||
labeler: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v3 | ||
- | ||
name: Run Labeler | ||
if: success() | ||
uses: crazy-max/ghaction-github-labeler@v4 | ||
with: | ||
github-token: ${{ secrets.LABBELER_TOKEN }} | ||
yaml-file: .github/labels.yml | ||
skip-delete: false | ||
dry-run: false | ||
exclude: | | ||
pxmx | ||
lxc | ||
vds |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Node.js Package | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'build' | ||
paths: | ||
- 'build' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- run: npm ci | ||
- run: npm install --save gh-pages | ||
|
||
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
- run: npm ci | ||
- run: npm run deploy | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.ALL_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