Skip to content

Commit 386cc30

Browse files
committed
Merge branch 'dev' into releases/v4
2 parents 5c6e9e9 + b8c9eb0 commit 386cc30

18 files changed

+326
-176
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
# These are supported funding model platforms
2-
31
github: [JamesIves]

.github/ISSUE_TEMPLATE/BUG.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Bug Report 🐝
2+
description: Create a bug report to help us improve the action.
3+
title: 'bug: 🐝 '
4+
labels: ['bug 🐝', 'triage ⚠️']
5+
assignees:
6+
- JamesIves
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thank you for taking the time to report a bug. Please fill out the sections below to help us reproduce the issue and improve the action. If you're unsure about something, feel free to skip it or write N/A in the field.
12+
13+
[Please check the Q&A before posting an issue here](https://github.com/JamesIves/github-pages-deploy-action/discussions?discussions_q=category%3AQ%26A).
14+
- type: textarea
15+
id: bug-description
16+
attributes:
17+
label: Describe the bug
18+
description: 'Please provide a clear and concise description of what the bug is and what you expected to happen.'
19+
validations:
20+
required: true
21+
- type: textarea
22+
id: reproduction-steps
23+
attributes:
24+
label: Reproduction Steps
25+
description: 'Steps to reproduce the behavior. Please provide a minimal example if possible.'
26+
validations:
27+
required: true
28+
- type: textarea
29+
id: logs
30+
attributes:
31+
label: Logs
32+
description: "Please provide your deployment logs if applicable. If the error message isn't revealing the problem please set ACTIONS_STEP_DEBUG to true in your repository's secrets menu and run the workflow again."
33+
render: shell
34+
validations:
35+
required: false
36+
- type: textarea
37+
id: workflow
38+
attributes:
39+
label: Workflow
40+
description: 'Please provide a link or snippet of your workflow yml file.'
41+
render: yml
42+
validations:
43+
required: true
44+
- type: textarea
45+
id: additional-comments
46+
attributes:
47+
label: Additional Comments
48+
description: 'Add any other context about the problem here that does not fit elsewhere.'
49+
validations:
50+
required: false

.github/ISSUE_TEMPLATE/BUG_REPORT.md

Lines changed: 0 additions & 28 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.

.github/release.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
changelog:
2+
categories:
3+
- title: Breaking Changes 💥
4+
labels:
5+
- breaking 💥
6+
- breaking
7+
- title: New Features 🎉
8+
labels:
9+
- feature ✨
10+
- feat
11+
- title: Bug Fixes 🐝
12+
labels:
13+
- fix 🐝
14+
- bug 🐝
15+
- fix
16+
- title: Performance ⚡
17+
labels:
18+
- performance ⚡
19+
- perf
20+
- title: Build 🔧
21+
labels:
22+
- build 🔧
23+
- build
24+
- title: Testing 🧪
25+
labels:
26+
- test 🧪
27+
- test
28+
- title: Documentation 📖
29+
labels:
30+
- documentation 📖
31+
- docs
32+
- title: Dependencies 🤖
33+
labels:
34+
- dependencies
35+
- title: Other Changes
36+
labels:
37+
- '*'

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: unit-tests
1+
name: Unit Tests 🧪
22
on:
33
pull_request:
44
branches:
@@ -32,7 +32,7 @@ jobs:
3232
yarn test
3333
3434
- name: Uploade CodeCov Report
35-
uses: codecov/codecov-action@v4.4.0
35+
uses: codecov/codecov-action@v4.5.0
3636
with:
3737
token: ${{ secrets.CODECOV_TOKEN }}
3838

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'CodeQL'
1+
name: CodeQL Analysis 🔍
22
on:
33
push:
44
branches:

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy Code to Release Branch
1+
name: Deploy Code to Release Branch 🚀
22
on:
33
workflow_dispatch:
44

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: integration-tests
1+
name: Integration Tests 🧪
22
on:
33
workflow_dispatch:
44
inputs:

0 commit comments

Comments
 (0)