We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e44e59f commit c4313a2Copy full SHA for c4313a2
.docsifytopdfrc.js
@@ -0,0 +1,7 @@
1
+module.exports = {
2
+ contents: [ "summary.md" ],
3
+ pathToPublic: "pdf/advanced-java.pdf",
4
+ pdfOptions: "<options for puppeteer.pdf()>",
5
+ removeTemp: true,
6
+ emulateMedia: "screen",
7
+}
.github/workflows/branch-merge.yml
@@ -0,0 +1,17 @@
+name: Merge Branch
+
+on:
+ push:
+ branches: [ imgbot ]
+jobs:
8
+ merge-branch:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - uses: everlytic/branch-merge@1.1.0
13
+ with:
14
+ github_token: ${{ github.token }}
15
+ source_ref: ${{ github.ref }}
16
+ target_branch: 'master'
17
+ commit_message_template: '[Automated] Merged {source_ref} into {target_branch}'
0 commit comments