From 42285d35d4475d7f577d6354ea995213db43047a Mon Sep 17 00:00:00 2001 From: "Stanislav N. aka pztrn" Date: Sat, 20 Nov 2021 03:36:00 +0500 Subject: [PATCH] Fix Drone confiuration and add gitignore. --- .drone.yml | 29 ----------------------------- .gitignore | 3 +++ 2 files changed, 3 insertions(+), 29 deletions(-) create mode 100644 .gitignore diff --git a/.drone.yml b/.drone.yml index 93a24f9..6f7a220 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,15 +4,6 @@ type: docker name: build steps: - - name: notify-start - image: pztrn/discordrone - settings: - webhook_id: - from_secret: discord_webhook_id - webhook_token: - from_secret: discord_webhook_secret - message: 'Starting building **{{repo.name}}#{{build.number}}@{{commit.sha}}** @ {{datetime build.started "02-Jan-2006 15:04:05 MST" "Asia/Yekaterinburg"}} (See {{build.link}} for logs).' - - name: lint image: golangci/golangci-lint:latest environment: @@ -46,23 +37,3 @@ steps: depends_on: - test - lint - - - name: notify-end - when: - status: - - success - - failure - image: pztrn/discordrone - settings: - webhook_id: - from_secret: discord_webhook_id - webhook_token: - from_secret: discord_webhook_secret - message: " - {{#success build.status}} - **{{repo.name}}#{{build.number}}@{{commit.sha}}** built in {{since build.startedint}} and pushed to hub.docker.com. - {{ else }} - **{{repo.name}}#{{build.number}}@{{commit.sha}}** failed. See {{build.link}}. - {{/success}}" - depends_on: - - docker \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d28bd7a --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.idea +.vscode +*DS_Store*