Files
discordeno/.github/workflows/lib-check-e2e.yml
dependabot[bot] 33e24c8c07 build(deps): bump actions/checkout from 5 to 6 (#4595)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 13:30:43 +01:00

38 lines
786 B
YAML

name: Library Checks (E2E)
permissions:
contents: read
on:
pull_request:
push:
branches:
- main
paths-ignore:
- 'website/**'
merge_group:
jobs:
workqueue:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ahmadnassri/action-workflow-queue@v1
if: ${{ github.event_name != 'pull_request' }}
with:
timeout: 6000000
rest-e2e-test:
needs: workqueue
name: Rest
uses: ./.github/workflows/e2e-test.yml
secrets: inherit
with:
package: rest
event_name: ${{ github.event_name }}
bot-e2e-test:
name: Bot
needs: rest-e2e-test
uses: ./.github/workflows/e2e-test.yml
secrets: inherit
with:
package: bot
event_name: ${{ github.event_name }}