mirror of
https://github.com/owncast/owncast.git
synced 2024-11-24 13:50:06 +03:00
Remove old web workflows and add new ones
This commit is contained in:
parent
8638961b59
commit
b66617961d
9 changed files with 3 additions and 141 deletions
|
@ -9,4 +9,4 @@ jobs:
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm install && npm run build
|
run: cd web && npm install && npm run build
|
21
.github/workflows/bundle-admin.yml
vendored
21
.github/workflows/bundle-admin.yml
vendored
|
@ -1,21 +0,0 @@
|
||||||
name: Bundle admin (owncast/owncast-admin)
|
|
||||||
on:
|
|
||||||
repository_dispatch:
|
|
||||||
types: [bundle-admin-event]
|
|
||||||
jobs:
|
|
||||||
bundle:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Bundle admin
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
- run: build/admin/bundleAdmin.sh
|
|
||||||
|
|
||||||
- name: Commit changes
|
|
||||||
uses: EndBug/add-and-commit@v9
|
|
||||||
with:
|
|
||||||
author_name: Owncast
|
|
||||||
author_email: owncast@owncast.online
|
|
||||||
message: "Update admin to ${{ github.event.client_payload.sha }}"
|
|
||||||
add: "static/admin"
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GH_CR_PAT }}
|
|
|
@ -22,3 +22,4 @@ jobs:
|
||||||
uses: golangci/golangci-lint-action@v2
|
uses: golangci/golangci-lint-action@v2
|
||||||
with:
|
with:
|
||||||
only-new-issues: true
|
only-new-issues: true
|
||||||
|
args: --timeout=3m
|
1
.github/workflows/javascript-formatting.yml
vendored
1
.github/workflows/javascript-formatting.yml
vendored
|
@ -24,6 +24,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
# This part is also where you can pass other options, for example:
|
# This part is also where you can pass other options, for example:
|
||||||
prettier_options: --write webroot/**/*.{js,md}
|
prettier_options: --write webroot/**/*.{js,md}
|
||||||
|
working_directory: web
|
||||||
only_changed: true
|
only_changed: true
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
33
.github/workflows/javascript-packages.yaml
vendored
33
.github/workflows/javascript-packages.yaml
vendored
|
@ -1,33 +0,0 @@
|
||||||
name: javascript-packages
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
paths:
|
|
||||||
- build/javascript/package.json
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
run:
|
|
||||||
if: ${{ github.actor != 'dependabot[bot]' }}
|
|
||||||
name: npm run build
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout repo
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
# Make sure the actual branch is checked out when running on pull requests
|
|
||||||
ref: ${{ github.head_ref }}
|
|
||||||
|
|
||||||
- name: Build dependencies
|
|
||||||
uses: actions/setup-node@v3
|
|
||||||
with:
|
|
||||||
node-version: '12'
|
|
||||||
- run: cd build/javascript && npm run build
|
|
||||||
|
|
||||||
- name: Commit changes
|
|
||||||
uses: EndBug/add-and-commit@v9
|
|
||||||
with:
|
|
||||||
author_name: Owncast
|
|
||||||
author_email: owncast@owncast.online
|
|
||||||
message: "Commit updated Javascript packages"
|
|
||||||
add: "build/javascript/package* webroot/js/web_modules"
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
27
web/.github/stale.yml
vendored
27
web/.github/stale.yml
vendored
|
@ -1,27 +0,0 @@
|
||||||
# Number of days of inactivity before an issue becomes stale
|
|
||||||
daysUntilStale: 60
|
|
||||||
# Number of days of inactivity before a stale issue is closed
|
|
||||||
daysUntilClose: 7
|
|
||||||
# Issues with these labels will never be considered stale
|
|
||||||
exemptLabels:
|
|
||||||
- backlog
|
|
||||||
# Label to use when marking an issue as stale
|
|
||||||
staleLabel: stale
|
|
||||||
# Comment to post when marking an issue as stale. Set to `false` to disable
|
|
||||||
markComment: >
|
|
||||||
This issue has been automatically marked as stale because it has not had
|
|
||||||
recent activity. It will be closed if no further activity occurs. Thank you
|
|
||||||
for your contributions.
|
|
||||||
# Comment to post when closing a stale issue. Set to `false` to disable
|
|
||||||
closeComment: false
|
|
||||||
exemptMilestones: true
|
|
||||||
|
|
||||||
# Since old PRs are less useful than old issues ping them sooner.
|
|
||||||
pulls:
|
|
||||||
daysUntilStale: 30
|
|
||||||
markComment: >
|
|
||||||
This pull request has not had any activity in 30 days. Since things move fast it's best
|
|
||||||
to get PRs merged in, or to allow somebody else to work on it so the change can get in.
|
|
||||||
This PR will be closed if no further activity occurs. Thank you for your contributions!
|
|
||||||
exemptLabels:
|
|
||||||
- bot
|
|
16
web/.github/workflows/bundle-admin.yml
vendored
16
web/.github/workflows/bundle-admin.yml
vendored
|
@ -1,16 +0,0 @@
|
||||||
name: Bundle admin into core
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- develop
|
|
||||||
jobs:
|
|
||||||
dispatch:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Dispatch event to owncast/owncast
|
|
||||||
uses: peter-evans/repository-dispatch@v1
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.ADMIN_BUNDLE_PAT }}
|
|
||||||
repository: owncast/owncast
|
|
||||||
event-type: bundle-admin-event
|
|
||||||
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'
|
|
18
web/.github/workflows/linter.yml
vendored
18
web/.github/workflows/linter.yml
vendored
|
@ -1,18 +0,0 @@
|
||||||
name: linter
|
|
||||||
|
|
||||||
# This action works with pull requests and pushes
|
|
||||||
on: [push, pull_request]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
run-test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
name: Run linter on changed files
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Install Dependencies
|
|
||||||
run: npm install
|
|
||||||
|
|
||||||
- name: Lint
|
|
||||||
run: npm run lint
|
|
25
web/.github/workflows/prettier.yml
vendored
25
web/.github/workflows/prettier.yml
vendored
|
@ -1,25 +0,0 @@
|
||||||
name: javascript-formatter
|
|
||||||
|
|
||||||
on: [push]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
format:
|
|
||||||
if: ${{ github.actor != 'dependabot[bot]' }}
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
ref: ${{ github.ref }}
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Prettier
|
|
||||||
uses: creyD/prettier_action@v4.2
|
|
||||||
with:
|
|
||||||
# This part is also where you can pass other options, for example:
|
|
||||||
prettier_options: --write **/*.{js,tsx,jsx,css,scss}
|
|
||||||
ref: ${{ github.head_ref }}
|
|
||||||
only_changed: true
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
Loading…
Reference in a new issue