Skip to content

Commit 1883a4e

Browse files
authored
Merge pull request #271 from Nicxe/beta
v3.1.0
2 parents afa02a2 + fee4ad9 commit 1883a4e

52 files changed

Lines changed: 13797 additions & 3224 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ updates:
1515
- github-packages
1616
open-pull-requests-limit: 10
1717
labels:
18-
- "dependencies"
18+
- "dependencies"
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Sync beta back to dev
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
permissions:
8+
contents: write
9+
10+
jobs:
11+
sync:
12+
if: ${{ github.event.release.prerelease == true && github.event.release.target_commitish == 'beta' }}
13+
uses: nicxe/.github/.github/workflows/reusable-sync-beta-to-dev.yml@main
14+
secrets: inherit
15+
16+
17+
18+
19+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Sync main back to beta
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
permissions:
8+
contents: write
9+
10+
jobs:
11+
sync:
12+
if: ${{ github.event.release.prerelease == false && github.event.release.target_commitish == 'main' }}
13+
uses: nicxe/.github/.github/workflows/resusable-sync-main-back-to-beta.yml@main
14+
secrets: inherit

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Validate
22

33
on:
44
push:
5-
branches: [develop, beta, main]
5+
branches: [dev, beta, main]
66
pull_request:
77
workflow_dispatch:
88

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ f1_sensor.zip
1212
custom_components/f1_sensor/AGENTS.md
1313
custom_components/f1_sensor/CLAUDE.md
1414
/custom_components/f1_sensor/skills
15+
/custom_components/f1_sensor/tests

0 commit comments

Comments
 (0)