未验证 提交 57ac8a09 编写于 作者: J JJ Kasper 提交者: GitHub

Revert "Run migration script for GitHub Actions (#8305)" (#8307)

This reverts commit 683b2c66.
上级 683b2c66
workflow "Generate pull request stats" {
on = "pull_request"
resolves = ["PR Stats"]
}
workflow "Generate release stats" {
on = "release"
resolves = ["PR Stats"]
}
action "PR Stats" {
uses = "zeit/next-stats-action@master"
secrets = ["GITHUB_TOKEN", "PR_STATS_TEMP_TOKEN"]
}
on: pull_request
name: Generate pull request stats
jobs:
pRStats:
name: PR Stats
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: PR Stats
uses: zeit/next-stats-action@master
with:
PR_STATS_TEMP_TOKEN: ${{ secrets.PR_STATS_TEMP_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_STATS_TEMP_TOKEN: ${{ secrets.PR_STATS_TEMP_TOKEN }}
on: release
name: Generate release stats
jobs:
pRStats:
name: PR Stats
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: PR Stats
uses: zeit/next-stats-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_STATS_TEMP_TOKEN: ${{ secrets.PR_STATS_TEMP_TOKEN }}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册