Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
GitHub Actions Cookbook

You're reading from  GitHub Actions Cookbook

Product type Book
Published in Apr 2024
Publisher Packt
ISBN-13 9781835468944
Pages 250 pages
Edition 1st Edition
Languages
Concepts
Author (1):
Michael Kaufmann Michael Kaufmann
Profile icon Michael Kaufmann

Table of Contents (10) Chapters

Preface 1. Chapter 1: GitHub Actions Workflows 2. Chapter 2: Authoring and Debugging Workflows 3. Chapter 3: Building GitHub Actions 4. Chapter 4: The Workflow Runtime 5. Chapter 5: Automate Tasks in GitHub with GitHub Actions 6. Chapter 6: Build and Validate Your Code 7. Chapter 7: Release Your Software with GitHub Actions 8. Index 9. Other Books You May Enjoy

Creating an issue template

In this recipe, you will create a simple issue template that you can later extend to gather user input for your IssueOps workflows.

Getting ready…

We’ll add the issue template to the repository that you have used in previous chapters. You can clone the repository locally and work in Visual Studio Code or you can do this part in the browser – it doesn’t matter. You can follow the examples in my repository (https://github.com/wulfland/GitHubActionsCookbook).

How to do it…

  1. Create a new file called .github/ISSUE_TEMPLATE/repo_request.yml in the repository. GitHub will automatically treat the file in the .github/ISSUE_TEMPLATE folder as an issue template as long as it is a YAML or Markdown file.
  2. Add a name and description for the template:
    name: '🗒️ Repository Request'
    description: 'Request a new repository.'
  3. Prefill the title of the new issue with a default value:
    title...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime}