Skip to content

Commit 51029f0

Browse files
author
Workflow Sync Bot
committed
💬 - Files Synced | Runner ID : 30 | ⚡ Triggered By fuelviews/github-workflow-sync
1 parent 8aeea0a commit 51029f0

6 files changed

+76
-17
lines changed

‎.github/dependabot.yml

+19-15
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
1-
# Please see the documentation for all configuration options:
2-
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
3-
41
version: 2
52
updates:
6-
7-
- package-ecosystem: "github-actions"
8-
directory: "/"
3+
- package-ecosystem: 'npm'
4+
directory: '/'
95
schedule:
10-
interval: "weekly"
11-
labels:
12-
- "dependencies"
13-
14-
- package-ecosystem: "composer"
15-
directory: "/"
6+
interval: 'monthly'
7+
reviewers:
8+
- 'thejmitchener'
9+
target-branch: main
10+
- package-ecosystem: 'composer'
11+
directory: '/'
1612
schedule:
17-
interval: "weekly"
18-
labels:
19-
- "dependencies"
13+
interval: 'weekly'
14+
reviewers:
15+
- 'thejmitchener'
16+
target-branch: main
17+
- package-ecosystem: 'github-actions'
18+
directory: '/'
19+
schedule:
20+
interval: 'monthly'
21+
reviewers:
22+
- 'thejmitchener'
23+
target-branch: main

‎.github/funding.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: Fuelviews
+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Auto Tag and Release
2+
3+
on:
4+
push:
5+
pull_request:
6+
types: [closed]
7+
branches:
8+
- main
9+
10+
jobs:
11+
release:
12+
if: github.event.pull_request.merged == true
13+
runs-on: ubuntu-22.04
14+
permissions:
15+
contents: write
16+
steps:
17+
- uses: actions/checkout@v4
18+
with:
19+
ref: 'main'
20+
fetch-depth: '0'
21+
22+
- name: Bump version and push tag
23+
id: bump_version
24+
uses: anothrNick/[email protected]
25+
env:
26+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27+
DEFAULT_BUMP: patch
28+
WITH_V: true
29+
RELEASE_BRANCHES: main
30+
31+
- name: Create GitHub Release
32+
if: steps.bump_version.outputs.new_tag
33+
uses: actions/create-release@v1
34+
env:
35+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36+
with:
37+
tag_name: ${{ steps.bump_version.outputs.new_tag }}
38+
release_name: ${{ steps.bump_version.outputs.new_tag }}
39+
draft: true
40+
prerelease: false

‎.github/workflows/fix-php-code-style-issues.yml

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Fix PHP code style issues
22

33
on:
44
push:
5+
branches-ignore:
6+
- main
57
paths:
68
- '**.php'
79

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Autofill PR description
2+
3+
on: pull_request
4+
5+
jobs:
6+
openai-pr-description:
7+
runs-on: ubuntu-22.04
8+
9+
steps:
10+
- uses: platisd/openai-pr-description@master
11+
with:
12+
github_token: ${{ secrets.GITHUB_TOKEN }}
13+
openai_api_key: ${{ secrets.OPEN_AI_PR_DESCRIPTION_API_KEY }}

‎.github/workflows/update-changelog.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: "Update Changelog"
22

33
on:
44
release:
5-
types: [released]
65

76
permissions:
87
contents: write
@@ -16,7 +15,7 @@ jobs:
1615
- name: Checkout code
1716
uses: actions/checkout@v4
1817
with:
19-
ref: main
18+
ref: 'main'
2019

2120
- name: Update Changelog
2221
uses: stefanzweifel/changelog-updater-action@v1

0 commit comments

Comments
 (0)