Skip to content

Commit 549e3c7

Browse files
committed
Create public version
0 parents  commit 549e3c7

29 files changed

+613134
-0
lines changed

.eslintrc.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"commonjs": true,
5+
"es2021": true
6+
},
7+
"extends": [
8+
"eslint:recommended",
9+
"plugin:@typescript-eslint/recommended"
10+
],
11+
"overrides": [
12+
],
13+
"parser": "@typescript-eslint/parser",
14+
"parserOptions": {
15+
"ecmaVersion": "latest"
16+
},
17+
"plugins": [
18+
"@typescript-eslint"
19+
],
20+
"rules": {
21+
"@typescript-eslint/no-explicit-any": "off",
22+
"@typescript-eslint/no-var-requires": "off",
23+
"@typescript-eslint/no-non-null-assertion": "off"
24+
}
25+
}

.gitignore

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
11+
# Directory for instrumented libs generated by jscoverage/JSCover
12+
lib-cov
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage
16+
.nyc_output
17+
coverage.*
18+
19+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
20+
.grunt
21+
22+
# node-waf configuration
23+
.lock-wscript
24+
25+
# Compiled binary addons (http://nodejs.org/api/addons.html)
26+
build/Release
27+
28+
# Dependency directory
29+
node_modules
30+
31+
# Optional npm cache directory
32+
.npm
33+
34+
# Optional REPL history
35+
.node_repl_history
36+
37+
typings/
38+
lib/*.js
39+
test/*.js
40+
*.map

.prettierignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist/
2+
lib/
3+
node_modules/

.prettierrc.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"printWidth": 80,
3+
"tabWidth": 2,
4+
"useTabs": false,
5+
"semi": false,
6+
"singleQuote": true,
7+
"trailingComma": "none",
8+
"bracketSpacing": false,
9+
"arrowParens": "avoid"
10+
}

.vscode/launch.json

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Launch Program",
11+
"skipFiles": [
12+
"<node_internals>/**"
13+
],
14+
"program": "${workspaceFolder}/lib/main.js",
15+
"preLaunchTask": "tsc: build - tsconfig.json",
16+
"env": {
17+
// Be careful what you add here! It will be commited to the repository.
18+
// "GOOGLE_KEY": "" ,
19+
// "GDRIVE_FOLDERID": "",
20+
// "GIT_ROOT": "",
21+
// "GIT_ORIGIN": "",
22+
// "GIT_SUBDIR": "",
23+
// "SLACK_CHANNELS": "",
24+
},
25+
"outFiles": [
26+
"${workspaceFolder}/lib/**/*.js"
27+
]
28+
}
29+
]
30+
}

README.md

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# Github to Google Drive Synchronizer
2+
3+
## Purpose
4+
5+
Use this action to keep a Google Drive folder in sync with the contents of a Github repository.
6+
7+
* This requires a Google service account with **Editor** permissions in the Drive's folder.
8+
* The Drive account must have **Drive** API access enabled.
9+
* All files and directories created on Drive will be owned by the provided service account.
10+
* The program will sync a snapshot of the files according to the latest contents of the referenced branch, not the contents at the moment of the triggered action. This is meant to prevent that re-running an older action task would overwrite or unsync Drive's contents.
11+
* Any files showing in the log for the provided branch since the first commit will be deleted/overwritten in the Drive folder to match the last commit of the repository; even those created and deleted prior of the implementation of the action.
12+
* All files and folders that are present in Drive but were never part of the original repository (matched by path) will be left untouched (i.e. not deleted).
13+
* Files in Drive created from this action will have a description 'Created/Modified/Removed by ${Github2Drive} upon commit xxxxxx'.
14+
* Deleted files will go to Google Drive's `Trash`, but by Google's design, files in `Trash` can only be seen by the service account.
15+
* A Slack channel will be notified if a webhook URL is provided.
16+
17+
## Environment
18+
19+
### Mandatory
20+
21+
* **GOOGLE_KEY**: The JSON object of a Google API key for a service account with *Editor* permissions on the provided folder.
22+
* **GDRIVE_FOLDERID**: The folder ID on Google Drive that would be the root of the uploaded content.
23+
* **GIT_ORIGIN**: `origin/main` or other branch in the `origin` remote to use as source.
24+
25+
### Optional
26+
27+
* **GIT_SUBDIR**: In the local repository, the path to the subfolder that holds the contents to upload (can be ".")
28+
* **SLACK_CHANNELS**: List of Slack channels (separated by `|`) to post updates to; these must be URLs from Slack webhooks.
29+
* **GIT_ROOT**: _[Intended for testing only]_ Local path to the git root folder (normally "." or left unset) (e.g. /home/users/repo)
30+
31+
## Example usage
32+
33+
On your repository, set up `GOOGLE_KEY` and optionally `SLACK_CHANNELS` as action secrets. Set up `GDRIVE_FOLDERID`, `GIT_ORIGIN`, and optionally `GIT_SUBDIR`. Secrets and variables can be set in Github at `Settings``Secrets and variables``Actions``Secrets/Variables` `New repository secret/variable`.
34+
35+
On your repository, add the following content to `.github/workflows/action.yml`:
36+
37+
```yaml
38+
name: CI
39+
on: [push]
40+
branches: # Can use 'branches' or 'tags'
41+
- 'main' # This action only supports one reference
42+
jobs:
43+
build:
44+
runs-on: ubuntu-latest
45+
steps:
46+
- uses: actions/checkout@v3
47+
with:
48+
# ref: main # Normally not required
49+
fetch-depth: 0
50+
lfs: true
51+
- name: Update Guides
52+
uses: guillep2k/gitub-to-drive@latest
53+
env:
54+
GOOGLE_KEY: ${{ secrets.GOOGLE_KEY }} # Always use secrets
55+
GDRIVE_FOLDERID: ${{ vars.GDRIVE_FOLDERID }} # Use secrets or vars accordingly
56+
GIT_ORIGIN: ${{ vars.GIT_ORIGIN }} # Use secrets or vars accordingly
57+
GIT_SUBDIR: ${{ vars.GIT_SUBDIR }} # Use secrets or vars accordingly
58+
SLACK_CHANNELS: ${{ secrets.SLACK_CHANNELS }} # Always use secrets
59+
```
60+
61+
## Notes for developers
62+
63+
To publish a new version, the following commands are required:
64+
65+
```
66+
npm run all # Compile and package the project for distribution
67+
git add . # Add the modified files to git
68+
git commit -m '...' # Commit the changes on the generated files (edit the commit message)
69+
git tag -f latest # Move the 'latest' tag to the repository
70+
git push # Push current (e.g. 'main') branch to Github
71+
git push -f origin latest # Push the 'latest' tag to Github
72+
```

__tests__/git-tasks.test.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import {decodeAction, gitAction} from '../src/git-tasks'
2+
import {expect, test} from '@jest/globals'
3+
4+
// Not really using tests
5+
test('returns gitAction.A', () => {
6+
expect(decodeAction('A') === gitAction.A)
7+
})
8+
9+
test('returns undefined', () => {
10+
expect(decodeAction('X') === undefined)
11+
})

action.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: 'Github to Drive'
2+
description: 'GitHub to Google Drive contents synchronizer'
3+
author: 'guillep2k'
4+
runs:
5+
using: 'node16'
6+
main: 'dist/index.js'

0 commit comments

Comments
 (0)