GitHub Actions Certification — Question 3
In which scenarios could the GITHUB_TOKEN be used? (Choose two.)
Answer options
- A. to leverage a self-hosted runner
- B. to create a repository secret
- C. to publish to GitHub Packages
- D. to create issues in the repo
- E. to read from the file system on the runner
- F. to add a member to an organization
Correct answer: C, D
Explanation
The GITHUB_TOKEN is designed to publish to GitHub Packages and create issues in the repository, making options C and D correct. Options A, B, E, and F do not align with the intended use of the GITHUB_TOKEN, as they pertain to actions that either require different permissions or are not supported functionalities of the token.