Templates for github issues written in YAML
Writting Templates in YAML creates forms!
Also includes a sample template for pull request
create .github/ISSUE_TEMPLATE/
add YAML files there. Feel free to add/edit templates
Go to Issues Tab on this Git Repository and create New Issue!
Click on Get Started to see the template using form!
To use Github Flow
-
Setting
-
Branch protection rules
-
Add branch protection rule
-
Goto Rulesets -> New ruleset -> Copy paste JSON below to a file and name it rules.json -> import it
JSON
{
"id": 221701,
"name": "main",
"target": "branch",
"source_type": "Repository",
"source": "Liberty-Labs-AI/pylon",
"enforcement": "active",
"conditions": {
"ref_name": {
"exclude": [],
"include": [
"~DEFAULT_BRANCH"
]
}
},
"rules": [
{
"type": "non_fast_forward"
},
{
"type": "pull_request",
"parameters": {
"required_approving_review_count": 1,
"dismiss_stale_reviews_on_push": false,
"require_code_owner_review": false,
"require_last_push_approval": false,
"required_review_thread_resolution": false
}
}
],
"bypass_actors": []
}