Skip to content

Commit 3906bbd

Browse files
Merge remote-tracking branch 'origin/main' into personal/jennifer/7.45.1.dev0.bootstrap-merge
# Conflicts: # bootstrap/package.json # ietf/templates/meeting/session_buttons_include.html
2 parents dea0b4e + 32ce597 commit 3906bbd

10 files changed

Lines changed: 16949 additions & 367 deletions

File tree

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: CodeQL Analysis
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
schedule:
9+
- cron: '23 1 * * 1'
10+
11+
jobs:
12+
analyze:
13+
name: Analyze
14+
runs-on: ubuntu-latest
15+
permissions:
16+
actions: read
17+
contents: read
18+
security-events: write
19+
20+
strategy:
21+
fail-fast: false
22+
matrix:
23+
language: [ 'javascript', 'python' ]
24+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
25+
# Learn more about CodeQL language support at https://git.io/codeql-language-support
26+
27+
steps:
28+
- name: Checkout repository
29+
uses: actions/checkout@v2
30+
31+
- name: Initialize CodeQL
32+
uses: github/codeql-action/init@v1
33+
with:
34+
languages: ${{ matrix.language }}
35+
36+
- name: Perform CodeQL Analysis
37+
uses: github/codeql-action/analyze@v1

.github/workflows/publish-bs3.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Publish BS3
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
paths: [ bootstrap/** ]
7+
8+
workflow_dispatch:
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
17+
- name: Setup Node.js 16.x
18+
uses: actions/setup-node@v3.0.0
19+
with:
20+
node-version: 16.x
21+
registry-url: https://registry.npmjs.org/
22+
23+
- name: Set package.json version
24+
uses: HarmvZ/set-package-json-version-action@v0.1.2
25+
with:
26+
version: 1.0.${{ github.run_number }}
27+
path: ./bootstrap
28+
29+
- name: Build Release
30+
working-directory: bootstrap
31+
run: |
32+
npm install -g grunt-cli
33+
npm ci
34+
grunt dist
35+
36+
- name: Publish to NPM
37+
run: npm publish --access public
38+
working-directory: bootstrap
39+
env:
40+
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
41+
42+
- name: Upload a Build Artifact
43+
uses: actions/upload-artifact@v3.0.0
44+
with:
45+
name: dist
46+
path: bootstrap/dist

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

0 commit comments

Comments
 (0)