Skip to content

Commit

Permalink
build: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Dec 15, 2022
1 parent 342edfb commit 09a028f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 33 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/contributors.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,32 @@ on:
branches: [main]

jobs:
contributors:
if: "${{ !startsWith(github.event.head_commit.message, 'build: contributors') }}"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Contributors
run: |
echo ${{ secrets.GIT_EMAIL }}
echo ${{ secrets.GIT_USERNAME }}
# git config --global user.email ${{ secrets.GIT_EMAIL }}
# git config --global user.name ${{ secrets.GIT_USERNAME }}
# npm run contributors
# - name: Push changes
# uses: ad-m/github-push-action@master
# with:
# github_token: ${{ secrets.GH_TOKEN }}
# branch: ${{ github.head_ref }}

build:
runs-on: ubuntu-latest

Expand Down

0 comments on commit 09a028f

Please sign in to comment.