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

Update github-actions #87

Merged
merged 7 commits into from
Feb 28, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing to Drone-GAE
# Contributing to drone-gae

Drone-GAE is an open source project started by handful of developers at The New York Times and open to the entire open source community.
`drone-gae` is an open source project started by handful of developers at The New York Times and open to the entire open source community.

We really appreciate your help!

Expand All @@ -26,10 +26,8 @@ Before submitting changes, please follow these guidelines:
1. Open an issue to discuss a new feature.
1. Write tests.
1. Make sure code follows the ['Go Code Review Comments'](https://github.com/golang/go/wiki/CodeReviewComments).
<!--1. Make sure your changes pass `make test`.-->
<!--1. Make sure the entire test suite passes locally and on Travis CI.-->
1. Open a Pull Request.

## License

Unless otherwise noted, the Drone-GAE source files are distributed under the Apache 2.0-style license found in the LICENSE file.
Unless otherwise noted, `drone-gae` is distributed under the Apache 2.0-style license found in the LICENSE file.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@ updates:
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: drone-gae
name: Go

on:
push:
Expand All @@ -9,11 +9,10 @@ on:
branches: [ "main" ]

env:
GO111MODULE: on
CGO_ENABLED: 0

jobs:
build:
build:
runs-on: ubuntu-latest

permissions:
Expand Down Expand Up @@ -56,8 +55,8 @@ jobs:
type=semver,pattern={{major}}
- name: Login to Docker Hub
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v2
if: ${{ github.event_name != 'pull_request' }}
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -72,10 +71,9 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Slack Notification
if: ${{ github.event_name != 'pull_request' }}
id: slack
- name: Slack notification
uses: slackapi/[email protected]
if: ${{ github.event_name != 'pull_request' }}
with:
payload: |
{
Expand Down
4 changes: 0 additions & 4 deletions CODEOWNERS

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# drone-gae

[![Build Status](https://cloud.drone.io/api/badges/nytimes/drone-gae/status.svg)](https://cloud.drone.io/nytimes/drone-gae)
[![Build Status](https://github.com/nytimes/drone-gae/actions/workflows/build.yml/badge.svg)](https://github.com/nytimes/drone-gae/actions/workflows/build.yaml)

Drone plugin to manage deployments on Google App Engine.

Expand Down