简体   繁体   English

GitHub 操作不起作用奇怪的错误消息

[英]GitHub Actions not working strange error message

So I get this error message for serveral github action runs:所以我收到了几个 github 操作运行的错误消息:

The following team project collection is stopped: u58HQO13OlVT6yx9h86l8AENZAdSC6hwRnuQGH6RTqpb03FYH8. Start the collection and then try again. Administrator Reason: Creating Collection Host

The following is the workflow I am using:以下是我正在使用的工作流程:

name: Java docs deploy to gh-pages

on:
  push:
    branches:
      - master
      - docs-test

jobs:
  docs:

    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v1
      - name: Set up JDK 1.11
        uses: actions/setup-java@v1
        with:
          java-version: 1.11
      - name: Docs with gradle
        run: ./gradlew javadoc
      - name: Build and Deploy
        uses: JamesIves/github-pages-deploy-action@releases/v3
        with:
          ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
          BRANCH: gh-pages # The branch the action should deploy to.
          FOLDER: build/docs/javadoc # The folder the action should deploy.

I already tried rerunning it... Any ideas?我已经尝试重新运行它......有什么想法吗?

Apologies - this is an internal GitHub error message.道歉 - 这是一个内部 GitHub 错误消息。 We were rolling out a new deployment that had errors for some workflows, and I'm afraid that yours was one of the workflows affected.我们正在推出一个新部署,该部署在某些工作流中出现错误,恐怕您的部署是受影响的工作流之一。

We've rolled that deployment back - if you run your workflow now, the problem should be resolved.我们已经回滚了该部署 - 如果您现在运行您的工作流,问题应该得到解决。 Apologies for the inconvenience!不便之处敬请原谅!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM