remove github integrations
This commit is contained in:
		
							
								
								
									
										27
									
								
								.github/ISSUE_TEMPLATE/bug_report.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										27
									
								
								.github/ISSUE_TEMPLATE/bug_report.md
									
									
									
									
										vendored
									
									
								
							@@ -1,27 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
name: Bug report
 | 
			
		||||
about: Create a report to help us improve
 | 
			
		||||
title: ''
 | 
			
		||||
labels: ''
 | 
			
		||||
assignees: ''
 | 
			
		||||
 | 
			
		||||
---
 | 
			
		||||
<!-- BEFORE SUBMITTING YOUR PR, PLEASE REMOVE THIS TEXT -->
 | 
			
		||||
<!-- REMOVE START -->
 | 
			
		||||
**Reporting a bug**
 | 
			
		||||
 | 
			
		||||
First of all, this is **not** a problem reporting forum, only report if you are pretty sure what you are experiencing is a bug with this image, not a configuration issue, for that you can use the [Github discussions section](https://github.com/juanluisbaptiste/docker-postfix/discussions) and we will do our best to help you to figure out what's going on with your setup.
 | 
			
		||||
 | 
			
		||||
Also be sure you are using the latest image by doing _docker pull juanluisbaptiste/postfix:latest_.
 | 
			
		||||
<!-- REMOVE END -->
 | 
			
		||||
 | 
			
		||||
**Please include the contents of:**
 | 
			
		||||
 | 
			
		||||
  * Your docker-compose.yml file
 | 
			
		||||
  * Your .env file file
 | 
			
		||||
 | 
			
		||||
**Describe the issue**
 | 
			
		||||
Please include a description of what you are trying to accomplish and what you are facing when running this container.
 | 
			
		||||
 | 
			
		||||
**Expected behavior**
 | 
			
		||||
A clear and concise description of what you expected to happen.
 | 
			
		||||
							
								
								
									
										39
									
								
								.github/pull_request_template.md
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										39
									
								
								.github/pull_request_template.md
									
									
									
									
										vendored
									
									
								
							@@ -1,39 +0,0 @@
 | 
			
		||||
<!-- BEFORE SUBMITTING YOUR PR, PLEASE REMOVE THIS TEXT -->
 | 
			
		||||
<!-- REMOVE START -->
 | 
			
		||||
# Creating a Pull Request
 | 
			
		||||
 | 
			
		||||
We use github actions to do automatic [semantic versioning](https://github.com/semantic-release/semantic-release), so please use the following nomenclature for the commit message according to the type of change:
 | 
			
		||||
 | 
			
		||||
* Prefix with `feat:`, and it will trigger a minor version bump. 
 | 
			
		||||
* Prefix with `fix:`, and it will trigger a patch version bump.
 | 
			
		||||
* Prefix with `BREAKING CHANGE:`, and it will trigger a major version bump.
 | 
			
		||||
<!-- REMOVE END -->
 | 
			
		||||
 | 
			
		||||
## Description of the change
 | 
			
		||||
<!--Please be very clear on the intention of the modifications included in the pull request.-->
 | 
			
		||||
<!--If it is a bug, explain what is the issue at hand and how you are fixing it. -->
 | 
			
		||||
<!--If it is an improvement, explain why do you think it is needed and the benefits it brings to the project. -->
 | 
			
		||||
<!--Ideally I would recommend to create an issue first to discuss the new feature with the developers.-->
 | 
			
		||||
 | 
			
		||||
## Motivation and Context
 | 
			
		||||
<!--- Why is this change required? What problem does it solve? -->
 | 
			
		||||
<!--- If it fixes an open issue, please link to the issue here. -->
 | 
			
		||||
 | 
			
		||||
## How Has This Been Tested?
 | 
			
		||||
<!--- Please describe in detail how you tested your changes. -->
 | 
			
		||||
<!--- Include details of your testing environment, tests ran to see how -->
 | 
			
		||||
 | 
			
		||||
## Types of Changes
 | 
			
		||||
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
 | 
			
		||||
- [ ] Bug fix (non-breaking change which fixes an issue)
 | 
			
		||||
- [ ] New feature (non-breaking change which adds functionality)
 | 
			
		||||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
 | 
			
		||||
- [ ] Documentation (adding or updating documentation)
 | 
			
		||||
 | 
			
		||||
## Checklist:
 | 
			
		||||
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
 | 
			
		||||
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
 | 
			
		||||
- [ ] My change requires a change to the documentation and I have updated the documentation accordingly.
 | 
			
		||||
- [ ] My change adds a new configuration variable and I have updated the `.env.example` file accordingly.
 | 
			
		||||
 | 
			
		||||
And lastly, many thanks for taking your time to help us improve this project !
 | 
			
		||||
							
								
								
									
										48
									
								
								.github/workflows/release.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										48
									
								
								.github/workflows/release.yml
									
									
									
									
										vendored
									
									
								
							@@ -1,48 +0,0 @@
 | 
			
		||||
name: Release
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
    tags:
 | 
			
		||||
      - "*"
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  docker:
 | 
			
		||||
    runs-on: ubuntu-20.04
 | 
			
		||||
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Checkout
 | 
			
		||||
        uses: actions/checkout@v3
 | 
			
		||||
        with:
 | 
			
		||||
          token: ${{ secrets.API_GITHUB_TOKEN }}
 | 
			
		||||
 | 
			
		||||
      - name: Docker meta
 | 
			
		||||
        id: docker_meta
 | 
			
		||||
        uses: crazy-max/ghaction-docker-meta@v2
 | 
			
		||||
        with:
 | 
			
		||||
          images: juanluisbaptiste/postfix
 | 
			
		||||
          tags: |
 | 
			
		||||
            type=semver,pattern={{major}}
 | 
			
		||||
            type=semver,pattern={{major}}.{{minor}}
 | 
			
		||||
            type=semver,pattern={{major}}.{{minor}}.{{patch}}
 | 
			
		||||
            type=semver,pattern={{version}}
 | 
			
		||||
            alpine
 | 
			
		||||
 | 
			
		||||
      - name: Set up QEMU
 | 
			
		||||
        uses: docker/setup-qemu-action@v2
 | 
			
		||||
 | 
			
		||||
      - name: Set up Docker Buildx
 | 
			
		||||
        uses: docker/setup-buildx-action@v2
 | 
			
		||||
 | 
			
		||||
      - name: Login to DockerHub
 | 
			
		||||
        uses: docker/login-action@v2
 | 
			
		||||
        with:
 | 
			
		||||
          username: ${{ secrets.DOCKER_USERNAME }}
 | 
			
		||||
          password: ${{ secrets.DOCKER_PASSWORD }}
 | 
			
		||||
 | 
			
		||||
      - name: Build and push
 | 
			
		||||
        uses: docker/build-push-action@v3.3.1
 | 
			
		||||
        with:
 | 
			
		||||
          push: true
 | 
			
		||||
          platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
 | 
			
		||||
          tags: ${{ steps.docker_meta.outputs.tags }}
 | 
			
		||||
          labels: ${{ steps.docker_meta.outputs.labels }}
 | 
			
		||||
							
								
								
									
										36
									
								
								.github/workflows/test.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										36
									
								
								.github/workflows/test.yml
									
									
									
									
										vendored
									
									
								
							@@ -1,36 +0,0 @@
 | 
			
		||||
name: Test
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
    branches: [master, develop]
 | 
			
		||||
  pull_request:
 | 
			
		||||
    branches: [master, develop]
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  build:
 | 
			
		||||
    runs-on: ubuntu-20.04
 | 
			
		||||
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Checkout with token
 | 
			
		||||
        if: github.event_name != 'pull_request'
 | 
			
		||||
        uses: actions/checkout@v3
 | 
			
		||||
        with:
 | 
			
		||||
          token: ${{ secrets.API_GITHUB_TOKEN }}
 | 
			
		||||
 | 
			
		||||
      - name: Checkout without token
 | 
			
		||||
        if: github.event_name == 'pull_request'
 | 
			
		||||
        uses: actions/checkout@v3
 | 
			
		||||
 | 
			
		||||
      - name: Set up Docker Buildx
 | 
			
		||||
        uses: docker/setup-buildx-action@v2
 | 
			
		||||
 | 
			
		||||
      - name: Docker Build Test
 | 
			
		||||
        run: docker buildx build --load --tag test:test --file ./Dockerfile ./
 | 
			
		||||
 | 
			
		||||
      - name: Version
 | 
			
		||||
        if: github.event_name != 'pull_request'
 | 
			
		||||
        uses: cycjimmy/semantic-release-action@v3
 | 
			
		||||
        with:
 | 
			
		||||
          semantic_version: 17.4
 | 
			
		||||
        env:
 | 
			
		||||
          GITHUB_TOKEN: ${{ secrets.API_GITHUB_TOKEN }}
 | 
			
		||||
@@ -1,11 +0,0 @@
 | 
			
		||||
---
 | 
			
		||||
branches:
 | 
			
		||||
  - name: master
 | 
			
		||||
  - name: develop
 | 
			
		||||
    prerelease: true
 | 
			
		||||
plugins:
 | 
			
		||||
  - "@semantic-release/commit-analyzer"
 | 
			
		||||
  - "@semantic-release/release-notes-generator"
 | 
			
		||||
  - - "@semantic-release/github"
 | 
			
		||||
    - successComment: false
 | 
			
		||||
      failComment: false
 | 
			
		||||
		Reference in New Issue
	
	Block a user