diff --git a/.github/labels.yml b/.github/labels.yml index 978c292..ad55c0b 100644 --- a/.github/labels.yml +++ b/.github/labels.yml @@ -67,7 +67,7 @@ description: 'This issue may be useful, and needs some attention.' - name: 'priority-low' color: e4ea8a - description: 'Nice addition, maybe... someday...' + description: 'Nice addition, maybe...' - name: 'todo' color: 5319e7 @@ -78,6 +78,12 @@ - name: 'needs triage' color: 1d76db description: 'We need to talk.' +- name: 'common' + color: 2b4e67 + description: 'Common label for everything else.' +- name: 'project' + color: 2b4e67 + description: 'Which depends on this project.' - name: 'release' color: 0e8a16 @@ -89,3 +95,6 @@ - name: 'github-actions' color: 8a91ad description: 'Created by the github-action.' +- name: 'github' + color: 8a91ad + description: 'Which depends on GitHub.' diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f764ad3..73ade3c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,4 +1,4 @@ -name: Publish Package to npmjs +name: Publish Package to NPM registry on: release: @@ -17,7 +17,7 @@ jobs: registry-url: 'https://registry.npmjs.org' - name: Install dependencies 🔧 run: npm ci - - name: Publish package to npmjs 📦 + - name: Publish package to NPM registry 📦 run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.github/workflows/pullrequest-status-checks.yml b/.github/workflows/pullrequest-status-checks.yml index 63a4915..8986bb5 100644 --- a/.github/workflows/pullrequest-status-checks.yml +++ b/.github/workflows/pullrequest-status-checks.yml @@ -1,4 +1,4 @@ -name: Pull-Request Check +name: Pull-Request Status Check on: pull_request: @@ -43,4 +43,4 @@ jobs: - name: Install dependencies 🔧 run: npm ci - name: Run ESLint 📝 - run: npm run prettier + run: npm run lint