Skip to content

Commit 6a9d793

Browse files
authored
Merge branch 'main' into dokieli-issue
2 parents a91d7c4 + 07bb412 commit 6a9d793

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ jobs:
4444
needs: build # After the E2E and build jobs, if one of them fails, it won't merge the PR.
4545
runs-on: ubuntu-latest
4646
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}} # Detect that the PR author is dependabot
47+
permissions:
48+
contents: write
49+
pull-requests: write
4750
steps:
4851
- name: Enable auto-merge for Dependabot PRs
4952
run: gh pr merge --auto --merge "$PR_URL" # Use Github CLI to merge automatically the PR

src/dokieli/new.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
const DOKIELI_TEMPLATE = `
2-
<!DOCTYPE html>
1+
const DOKIELI_TEMPLATE = `<!DOCTYPE html>
32
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
43
<head>
54
<meta charset="utf-8" />
@@ -17,6 +16,7 @@ const DOKIELI_TEMPLATE = `
1716
</article>
1817
</main>
1918
</body>
20-
</html>`
19+
</html>
20+
`
2121

2222
export default DOKIELI_TEMPLATE

0 commit comments

Comments
 (0)