mirror of
https://github.com/pezkuwichain/phishing.git
synced 2026-04-22 04:28:01 +00:00
42 lines
912 B
YAML
42 lines
912 B
YAML
name: crosscheck
|
|
on:
|
|
schedule:
|
|
- cron: '45 4 * * *'
|
|
|
|
jobs:
|
|
crosscheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: check
|
|
env:
|
|
CI_LOG: 123
|
|
run: |
|
|
yarn install --immutable | grep -v 'YN0013'
|
|
yarn phishing:crosscheck
|
|
- name: issue
|
|
if: ${{ failure() }}
|
|
uses: JasonEtco/create-an-issue@v2
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
|
|
with:
|
|
filename: .github/crosscheck.md
|
|
|
|
addrcheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: check
|
|
env:
|
|
CI_LOG: 123
|
|
run: |
|
|
yarn install --immutable | grep -v 'YN0013'
|
|
yarn phishing:addrcheck
|
|
- name: issue
|
|
if: ${{ failure() }}
|
|
uses: JasonEtco/create-an-issue@v2
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
|
|
with:
|
|
filename: .github/addrcheck.md
|