14 Commits

Author SHA1 Message Date
862382d0bf Update CI/CD tokens, formatting (#179) 2023-06-04 10:12:39 +01:00
renovate[bot]
14ed8482cd Update docker Docker tag to v24.0.2 (#178)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-01 21:01:07 +01:00
renovate[bot]
465370599f Update dependency sentry/sdk to v3.4.0 (#177)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-22 18:52:23 +01:00
renovate[bot]
ca757019f5 Update docker Docker tag to v24.0.1 (#176)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-22 16:45:00 +01:00
renovate[bot]
ba07786819 Update docker Docker tag to v24 (#175)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-17 07:49:47 +01:00
renovate[bot]
f4a0813a9b Update docker Docker tag to v23.0.6 (#174)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-10 08:06:28 +01:00
renovate[bot]
335127481c Update docker Docker tag to v23.0.5 (#173)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-27 16:53:57 +01:00
renovate[bot]
0a0be176ce Update docker Docker tag to v23.0.4 (#172)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-18 07:28:43 +01:00
renovate[bot]
3bc49c1463 Update dependency ramsey/uuid to v4.7.4 (#171)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-16 15:54:03 +01:00
renovate[bot]
6748bc4ba4 Update docker Docker tag to v23.0.3 (#170)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-12 19:05:57 +01:00
renovate[bot]
c71241dcd7 Update actions/stale action to v8 (#168)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-04 08:37:09 +01:00
renovate[bot]
d47181cfbe Update docker Docker tag to v23.0.2 (#169)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-03 11:07:40 +01:00
renovate[bot]
a0ba3f61f4 Update dependency vlucas/phpdotenv to v5.5.0 (#167)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-16 18:41:41 +00:00
renovate[bot]
aef8acfe9f Update dependency sentry/sdk to v3.3.0 (#166)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-16 18:32:09 +00:00
9 changed files with 442 additions and 625 deletions

View File

@@ -17,7 +17,7 @@ Feel free to open an issue if you have any questions.
### Code of conduct and guidelines ### Code of conduct and guidelines
First of all, we expect everyone (contributors and maintainers alike) to respect the [Code of conduct](https://github.com/luketainton/FHeD/blob/master/.github/CODE_OF_CONDUCT.md). It is not a recommendation, it is mandatory. First of all, we expect everyone (contributors and maintainers alike) to respect the [Code of conduct](https://github.com/luketainton/FHeD/blob/main/.github/CODE_OF_CONDUCT.md). It is not a recommendation, it is mandatory.
For all contributions, please respect the following guidelines: For all contributions, please respect the following guidelines:
@@ -38,6 +38,6 @@ feel free to open an issue to present your idea.
The general process to submit a contribution is as follow: The general process to submit a contribution is as follow:
1. Create your own fork of the code 1. Create your own fork of the code
2. Make you changes in a new branch in your fork (not main) 2. Make you changes in a new branch in your fork (not main)
3. Make sure to fill the [pull request](https://github.com/luketainton/FHeD/blob/master/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md) properly. 3. Make sure to fill the [pull request](https://github.com/luketainton/FHeD/blob/main/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md) properly.
### Happy coding :metal: ### Happy coding :metal:

View File

@@ -1,6 +1,6 @@
mode: auto mode: auto
silent: false silent: false
branchName: '${issue.number}' branchName: "${issue.number}"
branches: branches:
- label: type:feature - label: type:feature
prefix: feat- prefix: feat-

View File

@@ -1,14 +1,14 @@
name: Auto-create branches name: Auto-create branches
on: on:
issues: issues:
types: [assigned] types: [assigned]
jobs: jobs:
create_issue_branch_job: create_issue_branch_job:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Create Issue Branch - name: Create Issue Branch
uses: robvanderleek/create-issue-branch@master uses: robvanderleek/create-issue-branch@master
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -1,37 +1,37 @@
name: Deploy name: Deploy
on: on:
push: push:
branches: main branches: [main]
jobs: jobs:
tests: tests:
name: Tests name: Tests
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Setup PHP with Xdebug - name: Setup PHP with Xdebug
uses: shivammathur/setup-php@v2 uses: shivammathur/setup-php@v2
with: with:
php-version: '8.1' php-version: "8.1"
coverage: xdebug coverage: xdebug
- name: Install dependencies with composer - name: Install dependencies with composer
run: composer update --no-ansi --no-interaction --no-progress run: composer update --no-ansi --no-interaction --no-progress
- name: Run tests with phpunit/phpunit - name: Run tests with phpunit/phpunit
run: vendor/bin/phpunit --coverage-clover=coverage.xml run: vendor/bin/phpunit --coverage-clover=coverage.xml
- name: Fix code coverage paths - name: Fix code coverage paths
run: sed -i 's@'$GITHUB_WORKSPACE'@/github/workspace/@g' coverage.xml run: sed -i 's@'$GITHUB_WORKSPACE'@/github/workspace/@g' coverage.xml
- name: SonarCloud Scan - name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master uses: SonarSource/sonarcloud-github-action@master
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
release-on-push: release-on-push:
runs-on: ubuntu-latest runs-on: ubuntu-latest
outputs: outputs:
ver: ${{ steps.release.outputs.version }} ver: ${{ steps.release.outputs.version }}
tag: ${{ steps.release.outputs.tag_name }} tag: ${{ steps.release.outputs.tag_name }}
env: env:
@@ -53,12 +53,12 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [tests, release-on-push] needs: [tests, release-on-push]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Login to GitHub Container Registry - name: Login to GitHub Container Registry
run: echo ${{ secrets.PAT }} | docker login ghcr.io -u luketainton --password-stdin run: echo ${{ secrets.GHCR_ACCESS_TOKEN }} | docker login ghcr.io -u luketainton --password-stdin
- name: Build image for GitHub Container Registry - name: Build image for GitHub Container Registry
run: docker build . --file Dockerfile --tag ghcr.io/luketainton/fhed:${{ needs.release-on-push.outputs.ver }} --tag ghcr.io/luketainton/fhed:latest run: docker build . --file Dockerfile --tag ghcr.io/luketainton/fhed:${{ needs.release-on-push.outputs.ver }} --tag ghcr.io/luketainton/fhed:latest
- name: Push image to GitHub Container Registry - name: Push image to GitHub Container Registry
run: | run: |
docker push ghcr.io/luketainton/fhed:latest docker push ghcr.io/luketainton/fhed:latest
docker push ghcr.io/luketainton/fhed:${{ needs.release-on-push.outputs.ver }} docker push ghcr.io/luketainton/fhed:${{ needs.release-on-push.outputs.ver }}

View File

@@ -6,8 +6,8 @@ jobs:
greeting: greeting:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/first-interaction@v1 - uses: actions/first-interaction@v1
with: with:
repo-token: ${{ secrets.GITHUB_TOKEN }} repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: 'Welcome! Thank you for opening your first issue on FHeD. Please see the [contributing guidelines](https://github.com/luketainton/FHeD/blob/main/.github/CONTRIBUTING.md) for more information.' issue-message: "Welcome! Thank you for opening your first issue on FHeD. Please see the [contributing guidelines](https://github.com/luketainton/FHeD/blob/main/.github/CONTRIBUTING.md) for more information."
pr-message: 'Thank you for opening your first pull request on FHeD! Please see the [contributing guidelines](https://github.com/luketainton/FHeD/blob/main/.github/CONTRIBUTING.md) to ensure your PR is ready for merge.' pr-message: "Thank you for opening your first pull request on FHeD! Please see the [contributing guidelines](https://github.com/luketainton/FHeD/blob/main/.github/CONTRIBUTING.md) to ensure your PR is ready for merge."

View File

@@ -2,18 +2,17 @@ name: Stale issues and PRs
on: on:
schedule: schedule:
- cron: "0 0 * * *" - cron: "0 0 * * *"
jobs: jobs:
stale: stale:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/stale@v7 - uses: actions/stale@v8
with: with:
repo-token: ${{ secrets.GITHUB_TOKEN }} repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been marked as stale due to inactivity. If this issue is still ongoing, please leave a comment.' stale-issue-message: "This issue has been marked as stale due to inactivity. If this issue is still ongoing, please leave a comment."
stale-pr-message: 'This pull request has been marked as stale due to inactivity. If this issue is still ongoing, please leave a comment.' stale-pr-message: "This pull request has been marked as stale due to inactivity. If this issue is still ongoing, please leave a comment."
stale-issue-label: 'status:stale' stale-issue-label: "status:stale"
stale-pr-label: 'status:stale' stale-pr-label: "status:stale"

View File

@@ -1,18 +1,18 @@
stages: stages:
- build - build
build: build:
stage: build stage: build
only: only:
- tags - tags
image: docker:23.0.1 image: docker:24.0.2
services: services:
- docker:23.0.1-dind - docker:24.0.2-dind
variables: variables:
IMAGE_TAG: "$CI_REGISTRY_IMAGE:$CI_COMMIT_TAG" IMAGE_TAG: "$CI_REGISTRY_IMAGE:$CI_COMMIT_TAG"
script: script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- docker build -t $CI_REGISTRY_IMAGE:latest -t $IMAGE_TAG . - docker build -t $CI_REGISTRY_IMAGE:latest -t $IMAGE_TAG .
- docker build -t $IMAGE_TAG -t $CI_REGISTRY_IMAGE:latest . - docker build -t $IMAGE_TAG -t $CI_REGISTRY_IMAGE:latest .
- docker push $IMAGE_TAG - docker push $IMAGE_TAG
- docker push $CI_REGISTRY_IMAGE:latest - docker push $CI_REGISTRY_IMAGE:latest

928
app/composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -2,4 +2,4 @@
"extends": [ "extends": [
"config:base" "config:base"
] ]
} }