我正在尝试使用 github rest api 访问 github 部署变量。 但我无法获取工作流程中的变量值。它抛出一个错误
{
"message": "Resource not accessible by integration",
"documentation_url": "https://docs.github.com/rest/actions/variables#get-an-environment-variable",
"status": "403"
}
但是当我尝试使用我的个人访问令牌在本地终端中点击相同的curl cmd时,它起作用了,它给出了预期的结果。
这是我调用 health.yml 的主要 yaml 文件
name: CD
on:
push:
branches: [ "main" ]
workflow_dispatch:
jobs:
deploy:
uses: ./.github/workflows/deploy.yml
health-check:
uses: ./.github/workflows/health.yml
with:
DEPLOYMENT_TYPE: 'dev'
secrets: inherit
health-check-prod:
uses: ./.github/workflows/health.yml
with:
DEPLOYMENT_TYPE: 'prod'
secrets: inherit
这是 health.yml 文件
name: health
on:
workflow_call:
inputs:
DEPLOYMENT_TYPE:
required: true
type: string
jobs:
health:
runs-on: ubuntu-latest
steps:
- name: Test variables
run: |
curl -L \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/${{github.repository}}/environments/${{inputs.DEPLOYMENT_TYPE}}/variables/URL
注意:rest api端点中的URL是我保存在部署环境变量中的变量名称。
事实上,当您使用不同的访问令牌并且它返回 403 代码时它会起作用,我假设 Secrets.GITHUB_TOKEN 设置不正确,或者没有所需的权限。尝试再次发出该命令,但不要使用您的个人令牌,而是使用 Secrets.GITHUB_TOKEN 的值。如果它再次无法与 403 一起使用,则该令牌不具有所需的权限。如果有效,则工作流程可能未检索正确的 Secrets.GITHUB_TOKEN 值。