This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Migrate your pipeline from OAuth/PAT to the GitHub App | |
- You must have Admin permission on the GitHub repository being built. | |
- Visit this URL: https://github.com/apps/azure-pipelines | |
- Click Install or Configure in the top-right of the page. | |
- Select the GitHub organization of your repository. | |
- Click the Install button. | |
- If you are prompted to “Pick an account”, choose the user with Project Administrator permissions on your Azure DevOps project. | |
- In the dialog titled "Setup your Azure Pipelines project", select your existing Azure DevOps organization and project that contains the pipeline. Then, click Continue. | |
- When you are prompted to "Select a repository”, select the repository that your existing pipeline uses. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resources: | |
containers: | |
- container: u14 | |
image: ubuntu:14.04 | |
- container: u16 | |
image: ubuntu:16.04 | |
- container: u18 | |
image: ubuntu:18.04 | |
jobs: |