我有一个付费的github组织。
我们有一系列私人回购--与此同时,我们也需要使用私人回购中的操作。
下面是一个简单的例子:
name: FE Main - Commit received
on:
- push
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: org-com/ghaction-slack-notification@v1
with:
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }}
if: always()但是,该操作使用的是组织内部的操作,除非我做了以下操作:
org-com/ghaction-松弛-通知
公众..。然后操作失败,因为由于权限关系,无法加载tar。
该错误类似于:
An action could not be found at the URI 'https://api.github.com/repos/org-com/ghaction-slack-notification/tarball/a5e91154adf6c4b628576352f8788ae4c203c02b'如何运行在私人回购中使用操作的操作?
发布于 2021-10-18 23:43:30
这些文档似乎表明,对于组织的GitHub企业云内部存储库允许访问内部存储库中的组件来说,这是可能的。尽管我继续收到同样的错误。此外,该问题,使用内部存储库中的操作,计划在2021年的Q4。
发布于 2021-02-09 02:28:41
它看起来像私人回购的GitHub操作的还没有准备好 :'(
希望是今年的某个时候!
我也尝试在我的私人回购中运行GitHub操作,但是我得到了这个错误:Workflows can't be executed on this repository. Please check your payment method or billing status.
https://stackoverflow.com/questions/66054303
复制相似问题