Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub Actions Tidy-up #3114

Merged
merged 1 commit into from Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitattributes
Expand Up @@ -16,6 +16,8 @@
*.js text eol=lf
*.json text eol=lf
*.md text eol=lf
*.mjs text eol=lf
*.sh text eol=lf
*.txt text eol=lf
*.xml text eol=lf
*.yml text eol=lf
2 changes: 2 additions & 0 deletions .github/workflows/codeql-analysis.yml
Expand Up @@ -9,6 +9,7 @@ on:
branches:
- main
- "!dependabot/**"
workflow_dispatch:

jobs:
analyze:
Expand All @@ -27,6 +28,7 @@ jobs:
uses: github/codeql-action/init@v3
with:
languages: "javascript"
queries: +security-and-quality

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
@@ -1,4 +1,4 @@
name: publish
name: Publish

on:
push:
Expand Down
@@ -1,5 +1,4 @@

name: Build status
name: Build status (Windows)

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
@@ -1,4 +1,4 @@
name: Build status
name: Build status (Ubuntu)

coliff marked this conversation as resolved.
Show resolved Hide resolved
on:
push:
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
@@ -1,14 +1,15 @@
# Changelog

## 9.0.1 (April 11, 2023)

- Fixed tests on Windows, adds Windows Testing Action [#3110](https://github.com/h5bp/html5-boilerplate/pull/3110)
- Add og:image:alt for accessibility [#3066](https://github.com/h5bp/html5-boilerplate/pull/3066)
- Upgrade to Gulp 5 [#3100](https://github.com/h5bp/html5-boilerplate/pull/3100) [#3105](https://github.com/h5bp/html5-boilerplate/pull/3105)
- ci: Use GITHUB_OUTPUT envvar instead of set-output command [#3068](https://github.com/h5bp/html5-boilerplate/pull/3068)
- Readme and Changelog updates [#3055](https://github.com/h5bp/html5-boilerplate/pull/3055) [#3057](https://github.com/h5bp/html5-boilerplate/pull/3057) [#3064](https://github.com/h5bp/html5-boilerplate/pull/3064)


## 9.0.0 (December 6, 2023)

- Removing tile images [#3023](https://github.com/h5bp/html5-boilerplate/pull/3023)
- Add Prettier [#3011](https://github.com/h5bp/html5-boilerplate/pull/3011)
- Remove Modernizr [#3002](https://github.com/h5bp/html5-boilerplate/issues/3002)
Expand Down
3 changes: 2 additions & 1 deletion docs/about-this-repo.md
Expand Up @@ -95,7 +95,8 @@ of our `.github` folder.
file of our `dist` folder.
- `push-to-template.yml` pushes the `HEAD` of `main` to our template repo
- `spellcheck.yml` automatically checks markdown files for typos with cSpell.
- `test.yml` runs our test suite.
- `test.yml` runs our test suite on Ubuntu.
- `test-windows.yml` runs our test suite on Windows.
- `CODE_OF_CONDUCT.md` is our Code of Conduct, based on
[Contributor Covenant.](https://www.contributor-covenant.org/)
- `CONTRIBUTING.md` contains our contribution guidelines.
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.mjs
Expand Up @@ -107,7 +107,7 @@ gulp.task('copy:misc', () =>
// (other tasks will handle the copying of these files)
`!${dirs.src}/css/main.css`,
`!${dirs.src}/index.html`,
`!**/.DS_Store`
`!**/.DS_Store`,
],
{
encoding: false,
Expand Down