Bump msgpackr from 1.9.9 to 1.10.1 in /backend/code #109
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto Merge | |
on: | |
pull_request: | |
types: [labeled] | |
permissions: | |
pull-requests: write | |
issues: write | |
repository-projects: write | |
jobs: | |
front: | |
runs-on : ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- uses: actions/setup-node@v3 | |
- name: run front end build | |
working-directory: ./frontend/code | |
run: npm ci && npm run build | |
back: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- uses: actions/setup-node@v3 | |
- name: run backend build | |
working-directory: ./backend/code | |
run : npm ci && npm run build | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses : actions/checkout@v3 | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name : run docker | |
run : docker compose up --build -d | |
label: | |
if : github.event.pull_request.user.login == 'ismail-kharrobi' || github.event.pull_request.user.login == 'Wadie-ess' || github.event.pull_request.user.login == 'sedeve' || github.event.pull_request.user.login == 'ayoubessabiry' | |
runs-on: ubuntu-latest | |
permissions: write-all | |
needs: [front, back,docker] | |
steps: | |
- name: Generate token | |
id: generate_token | |
uses: tibdex/[email protected] | |
with: | |
app_id: ${{ secrets.APP_ID }} | |
private_key: ${{ secrets.CLIENT_SECRET }} | |
- name: Use token | |
run : echo "save token" | |
env: | |
TOKEN: ${{ steps.generate_token.outputs.token }} | |
- name: Get PR URL | |
run: echo "PR_URL=${{ github.event.pull_request.html_url }}" >> $GITHUB_ENV | |
- name: add label | |
uses: actions-ecosystem/action-add-labels@v1 | |
with: | |
labels: automerge | |
- name: merge | |
run: | | |
gh pr merge --auto --merge "$PR_URL" | |
env: | |
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} | |
PR_URL: ${{ github.event.pull_request.html_url }} |