feat: create Fro Bot social branding template and assets #1509
Workflow file for this run
This file contains hidden or 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
| # Continuous Integration jobs for changes headed to main. | |
| --- | |
| name: Main | |
| on: | |
| pull_request: | |
| branches: [main] | |
| types: [opened, ready_for_review, reopened, synchronize] | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| shell: bash -Eeuo pipefail {0} | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ⤵ Checkout Branch | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| - name: 📦 Setup | |
| uses: ./.github/actions/setup | |
| - env: | |
| TIMING: 1 | |
| name: 💅🏽 Lint | |
| run: pnpm lint |