Skip to content

Commit 5f4cbaa

Browse files
authored
Merge branch 'main' into main
2 parents db52621 + 1df6903 commit 5f4cbaa

4 files changed

Lines changed: 82 additions & 0 deletions

File tree

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: "🐛 Bug Report"
2+
description: "When something doesn't seem right..."
3+
labels:
4+
- bug
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: Thank you for your report! Please fill out this form.
9+
- type: dropdown
10+
attributes:
11+
label: "What section of this project is the bug in?"
12+
multiple: true
13+
options:
14+
- Workflows
15+
- Building
16+
- CI/CD
17+
- Scripts
18+
- Meta (e.g. README)
19+
- Other
20+
- type: input
21+
attributes:
22+
label: "What is the bug?"
23+
placeholder: "Describe the bug here..."
24+
- type: input
25+
attributes:
26+
label: "What is the expected behavior?"
27+
placeholder: "Describe the expected behavior here..."
28+
- type: input
29+
attributes:
30+
label: "What is the actual behavior?"
31+
placeholder: "Describe the actual behavior here..."
32+
- type: input
33+
attributes:
34+
label: "How would you replicate this bug?"
35+
placeholder: "Describe the replication steps here..."
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "📄 Workflow RFC"
2+
description: "When you need to update/add a workflow..."
3+
labels:
4+
- enhancement
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: "Thank you for your request! Please fill out this form."
9+
- type: dropdown
10+
attributes:
11+
label: "Is this a new workflow or an update?"
12+
multiple: true
13+
options:
14+
- New
15+
- Update
16+
- type: input
17+
attributes:
18+
label: "What is the name of the workflow?"
19+
placeholder: "Describe the workflow here..."
20+
- type: input
21+
attributes:
22+
label: "What should the workflow do?"
23+
placeholder: "Describe the workflow here..."
24+
- type: input
25+
attributes:
26+
label: "What does it do (only if it's an update)?"
27+
placeholder: "Describe what it should do.."
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Remove all local branches that aren't on the remote repository
3+
command: |-
4+
"git branch --merged >/tmp/merged-branches && \
5+
vi /tmp/merged-branches && \
6+
xargs git branch -d </tmp/merged-branches"
7+
tags:
8+
- git
9+
description: "Remove all local branches that doesn't exists in remote repository."
10+
arguments: []
11+
source_url: "https://stackoverflow.com/questions/7726949/remove-tracking-branches-no-longer-on-remote"
12+
author: Mailo Světel
13+
author_url: "https://stackoverflow.com/users/133986/mailo-sv%c4%9btel"
14+
shells: []
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
name: Launch tabs with clipboard URLs
3+
command: "pbpaste | xargs -n1 -I{} open {}"
4+
tags:
5+
- pbpaste
6+
description: Launch all URLs (arranged in a list in the clipboard buffer). Will be launched using default browser and tab creation preference. Useful for copying a column of URLs from a spreadsheet and visiting them all at once.

0 commit comments

Comments
 (0)