Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

Pulling nightly into master #38

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
4782f01
feat: initial version (#1)
ReenigneArcher Oct 8, 2023
093503c
ci: update global workflows (#37)
LizardByte-bot Oct 8, 2023
0b871e0
ci: fix localize workflow (#41)
ReenigneArcher Oct 8, 2023
03c46b9
New Babel Updates (#42)
LizardByte-bot Oct 8, 2023
74b05e1
ci: update global python (#43)
LizardByte-bot Oct 8, 2023
b34ede4
Bump actions/checkout from 3 to 4 (#28)
dependabot[bot] Oct 8, 2023
7e9648b
Bump peter-evans/create-pull-request from 4 to 5 (#11)
dependabot[bot] Oct 8, 2023
5631fab
build(deps): bump @fontsource/open-sans from 4.5.13 to 5.0.15 (#39)
dependabot[bot] Oct 8, 2023
e8c2dc6
Bump @fortawesome/fontawesome-free from 6.2.0 to 6.4.2 (#22)
dependabot[bot] Oct 8, 2023
ad67001
Bump jquery from 3.6.1 to 3.7.1 (#26)
dependabot[bot] Oct 8, 2023
5bbabf9
Bump bootstrap from 5.2.2 to 5.3.2 (#34)
dependabot[bot] Oct 8, 2023
325acbc
ci: update global workflows (#44)
LizardByte-bot Oct 9, 2023
53e9a1b
ci: update global workflows (#46)
LizardByte-bot Oct 10, 2023
b796acb
ci: update release notifier (#47)
LizardByte-bot Oct 10, 2023
ab6c089
ci: update global workflows (#48)
LizardByte-bot Oct 12, 2023
1fc3422
ci: update release notifier (#49)
LizardByte-bot Oct 16, 2023
9561f42
build(deps-dev): bump plexhints from 0.1.0 to 0.1.1 (#50)
dependabot[bot] Oct 17, 2023
05d7c9d
ci: use tagged setup python action (#53)
ReenigneArcher Oct 24, 2023
642190f
ci: update global workflows (#62)
LizardByte-bot Nov 24, 2023
b18a03c
chore: update LizardByte actions (#63)
ReenigneArcher Nov 28, 2023
c6fe2bd
ci: update release notifier (#69)
LizardByte-bot Dec 4, 2023
03cff88
build(deps): bump actions/setup-python from 4 to 5 (#70)
dependabot[bot] Dec 7, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,45 +10,39 @@ updates:
schedule:
interval: "daily"
time: "08:00"
target-branch: "nightly"
open-pull-requests-limit: 10

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
time: "08:30"
target-branch: "nightly"
open-pull-requests-limit: 10

- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
time: "09:00"
target-branch: "nightly"
open-pull-requests-limit: 10

- package-ecosystem: "nuget"
directory: "/"
schedule:
interval: "daily"
time: "09:30"
target-branch: "nightly"
open-pull-requests-limit: 10

- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
time: "10:00"
target-branch: "nightly"
open-pull-requests-limit: 10

- package-ecosystem: "gitsubmodule"
directory: "/"
schedule:
interval: "daily"
time: "10:30"
target-branch: "nightly"
open-pull-requests-limit: 10
14 changes: 8 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Verify Changelog
id: verify_changelog
Expand All @@ -39,21 +39,21 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: Plugger.bundle

- name: Install Python 2.7
uses: actions/setup-python@v4
- name: Install Python
uses: LizardByte/action-setup-python@master
with:
python-version: '2.7'

- name: Set up Python 2.7 Dependencies
- name: Set up Python Dependencies
working-directory: Plugger.bundle
run: |
echo "Installing Requirements"
python --version
python -m pip --no-python-version-warning --disable-pip-version-check install --upgrade pip setuptools
python -m pip --no-python-version-warning --disable-pip-version-check install --upgrade pip setuptools wheel

# install dev requirements
python -m pip install --upgrade -r requirements-dev.txt
Expand Down Expand Up @@ -97,6 +97,7 @@ jobs:
!**/Plugger.bundle/Dockerfile
!**/Plugger.bundle/docs
!**/Plugger.bundle/scripts
!**/Plugger.bundle/tests

- name: Package Release
shell: bash
Expand All @@ -113,6 +114,7 @@ jobs:
"-xr!Plugger.bundle/Dockerfile" \
"-xr!Plugger.bundle/docs" \
"-xr!Plugger.bundle/scripts" \
"-xr!Plugger.bundle/tests" \
a "./Plugger.bundle.zip" "Plugger.bundle"

mkdir artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-create-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Create Pull Request
uses: repo-sync/pull-request@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

steps:
- name: Automerging
uses: pascalgn/automerge-action@v0.15.5
uses: pascalgn/automerge-action@v0.15.6
env:
BASE_BRANCHES: nightly
GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }}
Expand Down
72 changes: 0 additions & 72 deletions .github/workflows/autoupdate-labeler.yml

This file was deleted.

51 changes: 0 additions & 51 deletions .github/workflows/autoupdate.yml

This file was deleted.

Loading
Loading